-
Notifications
You must be signed in to change notification settings - Fork 243
/
NQueens.java
68 lines (65 loc) · 1.93 KB
/
NQueens.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
class Solution {
public List<List<String>> solveNQueens(int n) { //n= num of queens
List<List<String>> res = new ArrayList<>();
boolean[][] board = new boolean[n][n];
nQueen(board, 0, res);
return res;
}
//main function to check
public void nQueen(boolean[][] board, int row, List<List<String>> res){
if(row== board.length){
addList(board, res);
return;
}
//checking every possible ans
for(int col=0; col<board.length; col++){
if(isSafe(board, row, col)){
board[row][col] = true;
nQueen(board, row+1, res);
//bactracking
board[row][col] = false;
}
}
return;
}
//function to check if placing queen is safe
public boolean isSafe(boolean[][] board, int row, int col){
//vertical check
for(int i= 0; i<row; i++){
if(board[i][col]){
return false;
}
}
//diagonal check
int maxLeft = Math.min(row, col);
for(int i=1; i<=maxLeft; i++){
if(board[row-i][col-i]){
return false;
}
}
//diagonal check
int maxRight = Math.min(row, board.length-col-1);
for(int i=1; i<=maxRight; i++){
if(board[row-i][col+i]){
return false;
}
}
return true;
}
//function to add the ans into the list
public void addList(boolean[][] board, List<List<String>> res){
List<String> ans = new ArrayList<>();
for(boolean[] row : board){
String rowElement = "";
for(boolean element : row){
if(element){
rowElement += "Q";
}else{
rowElement += ".";
}
}
ans.add(rowElement);
}
res.add(ans);
}
}