【本文链接】
http://www.cnblogs.com/hellogiser/p/eight-queens-puzzle.html
【题目】
在8×8的国际象棋上摆放八个皇后,使其不能相互攻击,即任意两个皇后不得处在同一行、同一列或者同一对角斜线上。下图中的每个黑色格子表示一个皇后,这就是一种符合条件的摆放方法。请求出总共有多少种摆法。
【分析】
之前博文28.字符串的排列[StringPermutation]介绍过字符串的全排列,八皇后问题也可以转换为全排列问题。
由于八个皇后的任意两个不能处在同一行,那么每一个皇后占据一行。于是我们可以定义一个数组pos[8],pos[i]=value表示第i行将皇后放置于value位置。先把pos的八个数字分别用0-7初始化,接下来对数组pos数组做全排列。由于我们是用不同的数字初始化数组中的数字,因此任意两个皇后肯定不同列。我们只需要判断得到的每一个排列对应的八个皇后是不是在同一对角斜线上,也就是数组的两个下标i和j,是不是i-j==pos [i]- pos [j]或者j-i==pos [i]- pos [j]。
【代码】
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 |
// 54_EightQueensPuzzle.cpp : Defines the entry point for the console application.
// /* version: 1.0 author: hellogiser blog: http://www.cnblogs.com/hellogiser date: 2014/5/24 */ #include "stdafx.h" ; // swap a and b // check whether pos array is valid // print pos array void Permutation(int *pos, int n, int index) void EightQueensPuzzle() void test_main() int _tmain(int argc, _TCHAR *argv[]) |
【参考】
http://www.cnblogs.com/hellogiser/p/3738844.html
http://zhedahht.blog.163.com/blog/static/2541117420114331616329/
http://en.wikipedia.org/wiki/Eight_queens_puzzle
http://blog.csdn.net/hackbuteer1/article/details/6657109
【本文链接】
http://www.cnblogs.com/hellogiser/p/eight-queens-puzzle.html