写程序输出8皇后问题的所有排列,要求使用非递归的深度优先遍历。
测试数据 POJ 2754 http://bailian.openjudge.cn/practice/2754
1. 递归版本
#include <iostream>
#include <cmath>
using namespace std;
int answers[100][10];
int col[10];
写程序输出8皇后问题的所有排列,要求使用非递归的深度优先遍历。
测试数据 POJ 2754 http://bailian.openjudge.cn/practice/2754
1. 递归版本
#include <iostream>
#include <cmath>
using namespace std;
int answers[100][10];
int col[10];