八皇后问题

字符串全排列扩展----八皇后问题
    题目:在8×8的国际象棋上摆放八个皇后,使其不能相互攻击,即任意两个皇后不得处在同一行、同一列或者同一对角斜线上。下图中的每个黑色格子表示一个皇后,这就是一种符合条件的摆放方法。请求出总共有多少种摆法。

八皇后问题_第1张图片

    这就是有名的八皇后问题。解决这个问题通常需要用递归,而递归对编程能力的要求比较高。因此有不少面试官青睐这个题目,用来考察应聘者的分析复杂问题的能力以及编程的能力。

由于八个皇后的任意两个不能处在同一行,那么这肯定是每一个皇后占据一行。于是我们可以定义一个数组ColumnIndex[8],数组中第i个数字表示位于第i行的皇后的列号。先把ColumnIndex的八个数字分别用0-7初始化,接下来我们要做的事情就是对数组ColumnIndex做全排列。由于我们是用不同的数字初始化数组中的数字,因此任意两个皇后肯定不同列。我们只需要判断得到的每一个排列对应的八个皇后是不是在同一对角斜线上,也就是数组的两个下标i和j,是不是i-j==ColumnIndex[i]-Column[j]或者j-i==ColumnIndex[i]-ColumnIndex[j]。

#include <stdio.h>
#include<algorithm>
using namespace std;

int total = 0;

//判断排列是否满足八皇后
bool check(int columnIndex[], int length){
	for(int i = 0; i < length; ++i){
		for(int j = i + 1; j < length; ++j){
			if(i - j == columnIndex[i] - columnIndex[j] || j - i == columnIndex[i] - columnIndex[j])
				return false;
		}
	}
	return true;
}

//全排列皇后位置
void Permutation(int columnIndex[], int length, int index){
	if(index == length){
		if(check(columnIndex, length)){
			++total;
			for(int i = 0; i < length; ++i){
				printf("%d ", columnIndex[i]);
			}
			printf("\n-----------------------\n");
		}
	}
	else{
		for(int i = index; i < length; ++i){
			swap(columnIndex[index], columnIndex[i]);
			Permutation(columnIndex, length, index + 1);
			swap(columnIndex[index], columnIndex[i]);
		}
	}
}

void eightQueen(){
	int queens = 8;
	int *columnIndex = new int[queens];
	for(int i = 0; i < queens; ++i){
		columnIndex[i] = i;
	}
	Permutation(columnIndex, queens, 0);
}

int main(){
	eightQueen();
	printf("共有%d种排列", total);
	return 0;
}


你可能感兴趣的:(八皇后问题)