51:N 皇后

This commit is contained in:
huangge1199@hotmail.com 2021-08-02 18:27:21 +08:00
parent 373f267c87
commit 5305a29789

View File

@ -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);
} }
} }