1 Star 0 Fork 1

陈鹏/leecode with labuladong

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
37.解数独.cpp 1.14 KB
一键复制 编辑 原始数据 按行查看 历史
陈鹏 提交于 2022-07-23 19:31 . 回溯-解数独、生成括号
// @before-stub-for-debug-begin
#include <vector>
#include <string>
#include "commoncppproblem37.h"
using namespace std;
// @before-stub-for-debug-end
/*
* @lc app=leetcode.cn id=37 lang=cpp
*
* [37] 解数独
*/
// @lc code=start
class Solution {
public:
void solveSudoku(vector<vector<char>>& board) {
backtrack(board, 0, 0);
}
bool isValid(vector<vector<char>>& board, int r, int c, char n) {
for (int i = 0; i < 9; ++i) {
if (board[r][i] == n) return false;
if (board[i][c] == n) return false;
if (board[(r/3)*3 + i / 3][(c/3)*3 + i % 3] == n) return false;
}
return true;
}
bool backtrack(vector<vector<char>>& board, int i, int j) {
if (j == 9) return backtrack(board, i + 1, 0);
if (i == 9) return true;
if(board[i][j] != '.') return backtrack(board, i, j + 1);
for (char ch = '1'; ch <= '9'; ++ch) {
if (!isValid(board, i, j, ch)) continue;
board[i][j] = ch;
if (backtrack(board, i, j + 1)) return true;
board[i][j] = '.';
}
return false;
}
};
// @lc code=end
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/Chan1998/leecode-with-labuladong.git
git@gitee.com:Chan1998/leecode-with-labuladong.git
Chan1998
leecode-with-labuladong
leecode with labuladong
master

搜索帮助