2009年10月24日
摘要: #include<iostream>#include<stack>usingnamespacestd;constintMAXSIZE=8;//棋盘大小intchess[MAXSIZE][MAXSIZE]={0};//棋盘/*定义栈结点,表示一个皇后的位置*/structNode{introw;/*行*/intcol;/*列*/boolisMarked;/*是否标记*/};/... 阅读全文
posted @ 2009-10-24 10:22 Myhsg 阅读(325) 评论(0) 推荐(0) 编辑