- 0、前言
- 1、题目描述
- 2、解题思路
- 2.1 利用二维数组
- 2.1.1 思路
- 2.1.2 程序代码
- 2.1.3 运行结果
- 2.2 利用位运算
- 2.2.1 思路
- 2.2.2 程序代码
- 2.2.3 运行结果
- 3、总结
依然是一题解,具体题目可 点击此处 进行查看!具体代码以及其他内容可 点击此处 进行查看!而写这篇博客的目的在于加深自己的代码印象,具体内容如下!
1、题目描述简单说就是判断当前数独中的数据元素是否满足数独的规则,即是不是满足行、列、3*3的九宫格中同一数字不可出现两次。
#include
#include
using namespace std;
void showboard(vector<vector<char>>& board)
{
cout << "数独元素('.'代表没填数字):" << endl;
for (int i = 0; i < 9; i++)
{
for (int j = 0; j < 9; j++)
{
cout << board[i][j] << " ";
}
cout << endl;
}
cout << endl;
}
/*方法1 -- 利用2维数组*/
bool isValidSudoku(vector<vector<char>>& board) {
int row[9][10] = { 0 };
int col[9][10] = { 0 };
int box[9][10] = { 0 };
for (int i = 0; i < 9; i++)
{
for (int j = 0; j < 9; j++)
{
if (board[i][j] == '.') continue;
int tmp = board[i][j] - '0';
if ((row[i][tmp]) != 0 || (col[j][tmp]) != 0 || (box[j / 3 + (i / 3) * 3][tmp]) != 0)
return false;
row[i][tmp] = 1;
col[j][tmp] = 1;
box[j / 3 + (i / 3) * 3][tmp] = 1;
}
}
return true;
}
void test()
{
// 定义数独
vector<vector<char>> board = {
{ '5', '3', '.', '.', '7', '.', '.', '.', '.' },
{ '6', '.', '.', '1', '9', '5', '.', '.', '.' },
{ '.', '9', '8', '.', '.', '.', '.', '6', '.' },
{ '8', '.', '.', '.', '6', '.', '.', '.', '3' },
{ '4', '.', '.', '8', '.', '3', '.', '.', '1' },
{ '7', '.', '.', '.', '2', '.', '.', '.', '6' },
{ '.', '6', '.', '.', '.', '.', '2', '8', '.' },
{ '.', '.', '.', '4', '1', '9', '.', '.', '5' },
{ '.', '.', '.', '.', '8', '.', '.', '7', '9' } };
showboard(board);
cout << "\n判断当前数独是否有效:" << boolalpha << isValidSudoku(board) << endl << endl;
}
int main()
{
test();
system("pause");
return 0;
}
2.1.3 运行结果
2.2 利用位运算
2.2.1 思路
相较于上一种方法,此处的方法只不过是将2维数组变为了一维数组,然后在数组的数据中通过左移对应位置来表示数独中对应数据所存在的位置。
具体可看下述代码!
2.2.2 程序代码#include
#include
using namespace std;
void showboard(vector<vector<char>>& board)
{
cout << "数独元素('.'代表没填数字):" << endl;
for (int i = 0; i < 9; i++)
{
for (int j = 0; j < 9; j++)
{
cout << board[i][j] << " ";
}
cout << endl;
}
cout << endl;
}
/*方法2 -- 利用位运算*/
bool isValidSudoku(vector<vector<char>>& board) {
int row[9] = { 0 };
int col[9] = { 0 };
int box[9] = { 0 };
for (int i = 0; i < 9; i++)
{
for (int j = 0; j < 9; j++)
{
if (board[i][j] == '.') continue;
int tmp = 1 << (board[i][j] - '0');
if ((row[i] & tmp) != 0 || (col[j] & tmp) != 0 || (box[j / 3 + (i / 3) * 3] & tmp) != 0)
return false;
row[i] |= tmp;
col[j] |= tmp;
box[j / 3 + (i / 3) * 3] |= tmp;
}
}
return true;
}
void test()
{
// 定义数独
vector<vector<char>> board = {
{ '5', '3', '.', '.', '7', '.', '.', '.', '.' },
{ '6', '.', '.', '1', '9', '5', '.', '.', '.' },
{ '.', '9', '8', '.', '.', '.', '.', '6', '.' },
{ '8', '.', '.', '.', '6', '.', '.', '.', '3' },
{ '4', '.', '.', '8', '.', '3', '.', '.', '1' },
{ '7', '.', '.', '.', '2', '.', '.', '.', '6' },
{ '.', '6', '.', '.', '.', '.', '2', '8', '.' },
{ '.', '.', '.', '4', '1', '9', '.', '.', '5' },
{ '.', '.', '.', '.', '8', '.', '.', '7', '9' } };
showboard(board);
cout << "\n判断当前数独是否有效:" << boolalpha << isValidSudoku(board) << endl << endl;
}
int main()
{
test();
system("pause");
return 0;
}
2.2.3 运行结果
3、总结
本题中通过两种方法解决问题,我觉得值得在意的就是二维数组与一维数组之间的互通,利用位运算是一个好办法!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)