51:N 皇后
This commit is contained in:
parent
373f267c87
commit
5305a29789
@ -47,6 +47,7 @@ public class NQueens {
|
|||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
//测试代码
|
//测试代码
|
||||||
Solution solution = new NQueens().new Solution();
|
Solution solution = new NQueens().new Solution();
|
||||||
|
solution.solveNQueens(4);
|
||||||
}
|
}
|
||||||
|
|
||||||
//力扣代码
|
//力扣代码
|
||||||
@ -80,10 +81,11 @@ public class NQueens {
|
|||||||
}
|
}
|
||||||
|
|
||||||
String temp = list.get(row);
|
String temp = list.get(row);
|
||||||
String s1 = temp;
|
|
||||||
temp = temp.substring(0, col) + "Q" + temp.substring(col + 1);
|
temp = temp.substring(0, col) + "Q" + temp.substring(col + 1);
|
||||||
|
list.set(row,temp);
|
||||||
bfs(list, n, row + 1);
|
bfs(list, n, row + 1);
|
||||||
|
temp = temp.substring(0, col) + "." + temp.substring(col + 1);
|
||||||
|
list.set(row,temp);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user