You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10-29/判断随机.c

71 lines
1.9 KiB

#include <stdio.h>
int correct(int board[9][9]){
int col[9]={0},row[9]={0},block[9]={0};//<2F><>ʼ<EFBFBD><CABC><EFBFBD>С<EFBFBD><D0A1>С<EFBFBD><D0A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
int i,j;
for(i=0;i<9;++i){
for(j=0;j<9;j++){//<2F><><EFBFBD><EFBFBD>
int index=1<<(board[i][j]-1);//<2F><>ʼλ<CABC><CEBB><EFBFBD><EFBFBD>
int blockindex=i/3*3+j/3;//<2F><>
if(board[i][j]!=0){//<2F><>Ҫ<EFBFBD>жϵ<D0B6>λ<EFBFBD><CEBB>
if(row[i]&index){//<2F><>λ<EFBFBD><CEBB><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
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;//ֻҪ<D6BB>ж<EFBFBD>һ<EFBFBD>β<EFBFBD><CEB2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>˵<EFBFBD><CBB5><EFBFBD><EFBFBD><EFBFBD>Ϸ<EFBFBD>
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");//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>ȷ<EFBFBD><C8B7><EFBFBD><EFBFBD>
return 1;
}
void print(int board[9][9]){//<2F><>ʽ<EFBFBD><CABD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
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},//<2F><>ʼ<EFBFBD><CABC>
{8, 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);
return 0;
}