[随缘一题]回溯法解决N皇后问题

来源:

维基百科-N皇后问题

解题思路

采用回溯法,即逐一位置放置,然后放置下一行,如果下一行没有合法位置,则回溯到上一行,调整位置,直到得到所有值.

实现代码

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
/**
* solve the N-Queen problem
*/
public class NQueen {

//the number of chess board,example 8
private static final int N = 8;

// result, the result[i] mean: the location of [i] line is on result[i] column.
private int[] result = new int[N];

//total num of possible result
private int resultNum = 0;

/**
* calculation
*/
private void calculation(int n) {

//if n == N, print the result
if (n == N) {
for (int i = 0; i < result.length; i++) {
System.out.print(result[i] + ",");
}
System.out.println();
resultNum++;
} else {
for (int i = 0; i < N; i++) {
// test every location possible
result[n] = i;
//if line n is allowed, locate the next line
if (isAllowed(n)) {
calculation(n + 1);
}
}
}
}

/**
* judge current line is allowed or not.
*/
private boolean isAllowed(int i) {
// i is not allowed while it in same line or diagonal with the pre line
for (int j = 0; j < i; j++) {
if (result[i] == result[j] || Math.abs(i - j) == Math.abs(result[i] - result[j])) {
return false;
}
}
return true;
}

//main method, include some test cases
public static void main(String[] args) {
NQueen queen = new NQueen();

queen.calculation(0);

System.out.println(queen.resultNum);
}

}

完。




ChangeLog

2019-02-24 完成

以上皆为个人所思所得,如有错误欢迎评论区指正。

欢迎转载,烦请署名并保留原文链接。

联系邮箱:huyanshi2580@gmail.com

更多学习笔记见个人博客——>呼延十