代码拉取完成,页面将自动刷新
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] = '.';
}
}
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。