forked from haobinaa/DataStructure-DesignPattern
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEightQueen.java
70 lines (63 loc) · 1.6 KB
/
EightQueen.java
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
package com.haobin.algorithm;
/**
* 八皇后
*
* @Author: HaoBin
* @Date 2018/1/24 22:04
*/
public class EightQueen {
/**
* 0表示没有皇后 1表示有皇后
*/
static int[][] map = new int[8][8];
static int count = 1;
public static void main(String[] args) {
}
public static void show() {
System.out.println("第" + count++ + "种摆法");
for (int i = 0; i < 8; i++) {
for (int j = 0; j < 8; j++) {
System.out.print(map[i][j] + " ");
}
System.out.println();
}
}
/**
* 判断是否能放置
* @param row
* @param col
* @return
*/
public static boolean check(int row, int col) {
// 上面
for (int i = row - 1; i >= 0; i--) {
if (map[i][col] == 1)
return false;
}
// 左斜上
for (int i = row - 1, j = col - 1; i >= 0 && j >= 0; i--, j--) {
if (map[i][j] == 1)
return false;
}
// 右斜上
for (int i = row - 1, j = col + 1; i >= 0 && j < 8; i--, j++) {
if (map[i][j] == 1)
return false;
}
return true;
}
public static void play(int row) {
// 遍历当前行的所有单元格
for (int i = 0; i < 8; i++) {
if (check(row, i)) {
map[row][i] = 1;
if (row == 7) {
show();
} else {
// 向下一行放置
play(row + 1);
}
}
}
}
}