Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
0 Star 0 Fork 0

徐云天/leetcode

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
_51.java 1.32 KB
一键复制 编辑 原始数据 按行查看 历史
徐云天 提交于 2021-06-28 17:20 +08:00 . 增加51,修改错误
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
public class _51 {
static class Solution1 {
public List<List<String>> solveNQueens(int n) {
char[][] chs = new char[n][n];
for (char[] arr : chs) {
Arrays.fill(arr, '.');
}
List<List<String>> res = new ArrayList<>();
dfs(chs, res, new boolean[2 * n], new boolean[2 * n], new boolean[2 * n], 0, n);
return res;
}
public void dfs(char[][] chs, List<List<String>> res, boolean[] x, boolean[] y, boolean[] cols, int row, int n) {
if (row == n) {
List<String> resItem = new ArrayList<>();
for (char[] arr : chs) {
resItem.add(new String(arr));
}
res.add(resItem);
return;
}
for (int col = 0; col < n; col++) {
int xIdx = row + col;
int yIdx = row - col + n;
if (x[xIdx] || y[yIdx] || cols[col]) continue;
x[xIdx] = y[yIdx] = cols[col] = true;
chs[row][col] = 'Q';
dfs(chs, res, x, y, cols, row + 1, n);
x[xIdx] = y[yIdx] = cols[col] = false;
chs[row][col] = '.';
}
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/xuyuntian/leetcode.git
git@gitee.com:xuyuntian/leetcode.git
xuyuntian
leetcode
leetcode
master