八皇后问题 回朔法






// 0513实验.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include 

using namespace std;
#define n 8


static int x[n];//x[i]表示第i个皇后放在第i行第x[i]列上


int Place(int k)
{
	for(int i=0; i=0)
	{
		x[k]++;

		while(x[k]


八皇后问题 根据书上的伪代码整理了一下 但是好像只能求解其中一种情况,应该是有很多种情况的吧 这个之后看看能不能再继续做下 找出所有的解



你可能感兴趣的:(完整代码,八皇后,回朔法)