據說用概率去解數獨的c++程式
同樣來自這個網站
/* Title # SUDOKU solver in C language Author # Hitesh Dholaria Email # hitesh.dholaria@gmail.com Input # Following is a sample SUDOKU problem stored in the file named "problem.txt" # Here, 0 represents empty place # So, our overall goal is to replace such 0-places by some appropriate numbers # There are total of 9 rows, 9 columns and 9 blocks of size (3x3) 008000050 370009010 000140007 050020600 001908300 003060020 700084000 080200063 090000400 Time Complexity # O(rows^2) OR O(columns^2) */ #include<stdio.h> #include<conio.h> // Global array to hold main SUDOKU problem int A[9][9]; void readProblem(void); void printProblem(void); int isProblemSolved(void); void eliminatePossibility(int,int); void getStartingIndicesOfBlock(int,int,int *,int *); // Main function int main() { int counter=0,number=0; int i=0,j=0,k=0,l=0,x=0,y=0; // First read the SUDOKU input problem into A[9][9] readProblem(); printf("----- Problem -----\n\n"); printProblem(); // Main loop of the program // Keep running this loop, until the number of valid elements in array becomes 81 // That is, until problem is solved while(!isProblemSolved()) { // Run this loop once for each of the numbers from 1 to 9 // Every time increment this "number" and if it is overflown, reinitialize it to 1 // This "number" is like "key" or "seed" for this main loop number++; if(number>9) { number=1; } // Eliminate possibility of being number at some of the 0-places by assigning -1 to those places for(i=0;i<9;i++) { for(j=0;j<9;j++) { if(A[i][j]==number) { eliminatePossibility(i,j); } } } // After eliminating possibilities, // if you find any 0-place, // then it means, there is a possibility of this "number" being at that place. // Count such 0-places in rows,columns and blocks // If it is only 1, then such 0-place must be updated by this "number", // (because of no other possibility at that 0-place and wer'e 100% sure about that!) // Moreover, eliminate possibilities again after updation // For all the rows for(i=0;i<9;i++) { counter=0; for(j=0;j<9;j++) { if(A[i][j]==0) { // Save column index of this 0-place k=j; counter++; } } if(counter==1) { A[i][k]=number; eliminatePossibility(i,k); } } // For all the columns for(i=0;i<9;i++) { counter=0; for(j=0;j<9;j++) { if(A[j][i]==0) { // Save row index of this 0-place k=j; counter++; } } if(counter==1) { A[k][i]=number; eliminatePossibility(k,i); } } // For all the blocks for(i=0;i<9;i+=3) { for(j=0;j<9;j+=3) { counter=0; for(k=i;k<i+3;k++) { for(l=j;l<j+3;l++) { if(A[k][l]==0) { // Save row and column indices of this 0-place x=k,y=l; counter++; } } } if(counter==1) { A[x][y]=number; eliminatePossibility(x,y); } } } } // Main loop ends here // Now, problem has been solved // So, printing the final solution printf("\n---- Solution ----\n\n"); printProblem(); //getch(); return 0; } // This function initializes problem array A[9][9] by reading SUDOKU elements from file void readProblem(void) { int i,j; //FILE *fp; //fp = fopen("problem.txt","r"); char s[] = "000000010400000000020000000000050407008000300001090000300400200050100000000806000"; for(i=0;i<9;i++) { for(j=0;j<9;j++) { //A[i][j]=fgetc(fp)-48; A[i][j] = s[i * 9 + j] - '0'; } // Skip reading '\n' into array A[9][9] //fgetc(fp); } //fclose(fp); } // This function prints problem array A[9][9] void printProblem(void) { int i,j; for(i=0;i<9;i++) { for(j=0;j<9;j++) { printf("%d ",A[i][j]); } printf("\n"); } } // This function returns 1(true), if number of valid elements(i.e. non-empty places) in A[9][9] is 81. // Otherwise, returns 0(false) // Also, note that whenever number of valid elements becomes 81, // that means our SUDOKU problem has been solved completely. int isProblemSolved(void) { int i,j,numberOfValidElements=0; for(i=0;i<9;i++) { for(j=0;j<9;j++) { if(A[i][j]>0) { numberOfValidElements++; } else { A[i][j]=0; } } } if(numberOfValidElements<81) { return 0; } else { return 1; } } // Eliminate possibility of specific "number" being at some of the 0-places by assigning -1 to those places // Arguments (row,column) represents indices of any arbitrary place in A[9][9] void eliminatePossibility(int row,int column) { int i,j; // Eliminating possibility from all the rows corresponding to "column" for(i=0;i<9;i++) { if(A[i][column]==0) { A[i][column]=-1; } } // Eliminating possibility from all the columns corresponding to "row" for(i=0;i<9;i++) { if(A[row][i]==0) { A[row][i]=-1; } } // Eliminating possibility from all the places corresponding to "row" and "column" getStartingIndicesOfBlock(row,column,&row,&column); // Now, "row" and "column" contains the indices of the first element of the current block for(i=row;i<row+3;i++) { for(j=column;j<column+3;j++) { if(A[i][j]==0) { A[i][j]=-1; } } } } // This function returns the indices of the first element of the 3x3 block // Here, specific block is being identified by the provided indices (i,j) of A[9][9] // Resultant indices are returned by the pointers (*rowIndex,*columnIndex) to the calling function void getStartingIndicesOfBlock(int i,int j,int *rowIndex,int *columnIndex) { if(i<3) { *rowIndex=0; } else if(i<6) { *rowIndex=3; } else { *rowIndex=6; } if(j<3) { *columnIndex=0; } else if(j<6) { *columnIndex=3; } else { *columnIndex=6; } }
在windows上測試都看不出時間了
D:\lutao\1>\a\timer sudoku_pos Timer 3.01 Copyright (c) 2002-2003 Igor Pavlov 2003-07-10 ----- Problem ----- 0 0 0 0 0 0 0 1 0 4 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 5 0 4 0 7 0 0 8 0 0 0 3 0 0 0 0 1 0 9 0 0 0 0 3 0 0 4 0 0 2 0 0 0 5 0 1 0 0 0 0 0 0 0 0 8 0 6 0 0 0 ---- Solution ---- 6 9 3 7 8 4 5 1 2 4 8 7 5 1 2 9 3 6 1 2 5 9 6 3 8 7 4 9 3 2 6 5 1 4 8 7 5 6 8 2 4 7 3 9 1 7 4 1 3 9 8 6 2 5 3 1 9 4 7 5 2 6 8 8 5 6 1 2 9 7 4 3 2 7 4 8 3 6 1 5 9 Kernel Time = 0.000 = 00:00:00.000 = 0% User Time = 0.000 = 00:00:00.000 = 0% Process Time = 0.000 = 00:00:00.000 = 0% Global Time = 0.405 = 00:00:00.405 = 100%
相關文章
- 羅塞塔網站上的c++解數獨程式網站C++
- 一個解數獨的程式
- 另一個數獨求解c++程式C++
- 又一個數獨求解c++程式C++
- java解數獨Java
- 由Swift程式語言說開去Swift
- 一個利用DLX演算法的Python解數獨程式演算法Python
- 據說程式猿都是……吸貓體質?
- 數學與程式設計:“概率論”總結程式設計
- 用C++模擬蚊子的運動來檢驗概率論內容C++
- 用pl/sql解決芬蘭數學家因卡拉設計的最難數獨SQL
- 數學與程式設計——概率論與數理統計程式設計
- 用程式消除一道概率題的二義性
- 據說別人的程式碼能殺人於無形???
- 圖解AI數學基礎 | 概率與統計圖解AI
- 我目前找到的最快的數獨求解程式
- C++中map的使用詳解說明C++
- 用java開發的有聲圍棋解說程式Java
- uniapp js 數獨小遊戲 寫死的簡單數獨 數獨 3.0APPJS遊戲
- java的引用:用C++/C的引用和指標去理解JavaC++指標
- python解數獨的簡單優化Python優化
- 微信紅包的概率測試程式
- LeetCode 37. 解數獨LeetCode
- 為什麼說你不要獨自程式設計程式設計
- 用vue開發一個所謂的數獨Vue
- Java 控制隨機數出現的概率Java隨機
- UA MATH563 概率論的數學基礎 中心極限定理4 獨立一元隨機變數的性質H5隨機變數
- Stream流根據屬性去重
- 09_ClickHouse,ReplacingMergeTree,案例,根據排序鍵去重,使用版本引數的去重(學習筆記)排序筆記
- 據說每個JavaEE程式設計師都是老司機Java程式設計師
- 據說,年薪百萬的程式設計師,都是這麼開悟的程式設計師
- 據說國內程式設計師的數量已經超過500萬,就像熱鍋上的螞蟻程式設計師
- 概率論04 隨機變數隨機變數
- 概率論08 隨機變數的函式隨機變數函式
- UA MATH563 概率論的數學基礎 中心極限定理6 獨立隨機變數的和與Kolmogorov擴充套件定理H5隨機變數Go套件
- TF-IDF模型的概率解釋模型
- vue 數獨Vue
- 數獨遊戲遊戲