From 500fed6fcd644f072702bb842b399723d34fb51f Mon Sep 17 00:00:00 2001 From: pjywuv8b9 <3314018306@qq.com> Date: Tue, 31 Oct 2023 16:10:29 +0800 Subject: [PATCH] =?UTF-8?q?Add=20=E5=88=A4=E6=96=AD=E6=95=B0=E7=8B=AC?= =?UTF-8?q?=E6=98=AF=E5=90=A6=E5=90=88=E6=B3=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 判断数独是否合法 | 69 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 判断数独是否合法 diff --git a/判断数独是否合法 b/判断数独是否合法 new file mode 100644 index 0000000..c2ebc75 --- /dev/null +++ b/判断数独是否合法 @@ -0,0 +1,69 @@ +#include +void correct(int board[9][9]){ + int col[9]={0},row[9]={0},block[9]={0}; + int i,j; + for(i=0;i<9;++i){ + for(j=0;j<9;j++){ + int index=1<<(board[i][j]-1); + int blockindex=i/3*3+j/3; + if(board[i][j]!=0){ + if(row[i]&index){ + printf("False:Invalid initial Sudoku matrix!\n"); + printf("The number %d in the row %d has been used!",board[i][j],i+1); + return 0; + } + row[i]=index; + if(col[j]&index){ + printf("False:Invalid initial Sudoku matrix!\n"); + printf("The number %d in the rol %d has been used!",board[i][j],j+1); + return 0; + } + col[j]=index; + if(block[blockindex]&index){ + printf("False:Invalid initial Sudoku matrix!\n"); + printf("The number %d in the block %d has been used!",board[i][j],blockindex+1); + return 0; + } + block[blockindex]=index; + } + printf("True:Valid initial Sudoku matrix!\n"); + return 1; + + } + } + +} +void print(int board[9][9]){ + printf("|---|---|---|---|---|---|\n"); + int i=0,j=0,s=0,k=0; + for(i=0;i<9;++i){ + for(j=0;j<9;j++){ + while(j%3==0){ + printf("| "); + break; + } + printf("%d ",board[i][j]); + } + printf("|\n"); + while((i+1)%3==0){ + printf("|---|---|---|---|---|---|\n"); + break; + } + } +} +int main(){ + int board1[9][9]={{5, 3, 0, 0, 7, 0, 0, 0, 0}, + {6, 0, 0, 1, 9, 5, 0, 0, 0}, + {0, 9, 8, 0, 0, 0, 0, 6, 0}, + {8, 0, 0, 0, 6, 0, 0, 0, 3}, + {4, 0, 0, 8, 0, 3, 0, 0, 1}, + {7, 0, 0, 0, 2, 0, 0, 0, 6}, + {0, 6, 0, 0, 0, 0, 2, 8, 0}, + {0, 0, 0, 4, 1, 9, 0, 0, 5}, + {0, 0, 0, 0, 8, 0, 0, 7, 9}}; + printf("The original Sudoku matrix:\n"); + print(board1); + correct(board1[9][9]); + + return 0; +} \ No newline at end of file