parent
fde718bf29
commit
eaf97b755c
@ -0,0 +1,73 @@
|
|||||||
|
#include <stdio.h>
|
||||||
|
#include <stdbool.h>
|
||||||
|
#define SIZE 9
|
||||||
|
|
||||||
|
void printMatrix(char matrix[SIZE][SIZE]) {
|
||||||
|
for (int i = 0; i < SIZE; i++) {
|
||||||
|
for (int j = 0; j < SIZE; j++) {
|
||||||
|
printf("%c ", matrix[i][j]);
|
||||||
|
}
|
||||||
|
printf("\n");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
bool isValidSudoku(char matrix[SIZE][SIZE]) {
|
||||||
|
bool rowCheck[SIZE][SIZE] = {false};
|
||||||
|
bool colCheck[SIZE][SIZE] = {false};
|
||||||
|
bool blockCheck[SIZE][SIZE] = {false};
|
||||||
|
|
||||||
|
for (int i = 0; i < SIZE; i++) {
|
||||||
|
for (int j = 0; j < SIZE; j++) {
|
||||||
|
char c = matrix[i][j];
|
||||||
|
if (c == '.') continue;
|
||||||
|
|
||||||
|
int num = c - '1';
|
||||||
|
|
||||||
|
if (rowCheck[i][num]) {
|
||||||
|
printf("不是数独矩阵\n");
|
||||||
|
printf("第 %d 行出现重复数字 %d。\n", i + 1, num + 1);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
rowCheck[i][num] = true;
|
||||||
|
|
||||||
|
if (colCheck[j][num]) {
|
||||||
|
printf("不是数独矩阵\n");
|
||||||
|
printf("第 %d 列出现重复数字 %d。\n", j + 1, num + 1);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
colCheck[j][num] = true;
|
||||||
|
|
||||||
|
int blockIndex = (i / 3) * 3 + (j / 3);
|
||||||
|
if (blockCheck[blockIndex][num]) {
|
||||||
|
printf("不是数独矩阵\n");
|
||||||
|
printf("第 %d 宫出现重复数字 %d。\n", blockIndex + 1, num + 1);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
blockCheck[blockIndex][num] = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
printf("是数独矩阵\n");
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
char matrix[SIZE][SIZE] = {
|
||||||
|
{'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'}
|
||||||
|
};
|
||||||
|
|
||||||
|
printf("原始数独矩阵:\n");
|
||||||
|
printMatrix(matrix);
|
||||||
|
|
||||||
|
isValidSudoku(matrix);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in new issue