-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheight-queen.py
49 lines (45 loc) · 1.26 KB
/
eight-queen.py
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
board = [[0, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 0]]
def print_board(board, cnt=-1):
print(f"Board {cnt}:" )
for row in board:
print(row)
print()
def canplace(board, row, col):
for i in range(row):
if board[row][i] == 1 or board[i][col] == 1:
return False
for i in range(row):
for j in range(8):
if (i+j == row+col) or (i-j == row-col):
if board[i][j] == 1:
return False
return True
count = 0
iter_count = 0
def recurse(board, row):
if row == 8:
global count
count += 1
print_board(board, count)
return
for i in range(8):
if canplace(board, row, i):
global iter_count
iter_count += 1
board[row][i] = 1
recurse(board, row+1)
board[row][i] = 0 # backtrack 回溯
if __name__ == '__main__':
print_board(board)
recurse(board, 0)
print("count:", count)
print("iter:", iter_count)
print("Done")
print_board(board)