八皇后问题

摘要: #include #include #define Maxsize 100 typedef struct node{ int _x; int _y; }chessman,*chess; static int cnt=0; static chessman c[Maxsize]; bool isOK(chess c,chessman cm,int c_len){ //判断是... 阅读全文
posted @ 2017-07-01 22:14 woaiwwc 阅读(95) 评论(0) 推荐(1)