-
Notifications
You must be signed in to change notification settings - Fork 451
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #140 from prathamesh-pichkate/sudoku-solver
Sudoku solver
- Loading branch information
Showing
2 changed files
with
144 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
public class HeapSort { | ||
|
||
public static void heapify(int arr[], int i,int size){ | ||
int left = 2*i+1; | ||
int right = 2*i+2; | ||
int maxIdx = i; | ||
|
||
if(left < size && arr[left] > arr[maxIdx]){ | ||
maxIdx = left; | ||
} | ||
|
||
if(right < size && arr[right] > arr[maxIdx]){ | ||
maxIdx = right; | ||
} | ||
|
||
if(maxIdx != i){ | ||
//swap | ||
int temp = arr[i]; | ||
arr[i] = arr[maxIdx]; | ||
arr[maxIdx] = temp; | ||
|
||
heapify(arr, maxIdx, size); | ||
} | ||
} | ||
public static void heap (int arr[]){ | ||
// step 1: build maxHeap | ||
int n = arr.length; | ||
for(int i = n/2; i >=0;i--){ | ||
heapify(arr,i, n); | ||
} | ||
|
||
//step 2 : push the largest at end | ||
for(int i = n-1;i>=0;i--){ | ||
//swap | ||
int temp = arr[0]; | ||
arr[0] = arr[i]; | ||
arr[i] = temp; | ||
heapify(arr,0,i); | ||
} | ||
} | ||
public static void main(String[] args) { | ||
int arr[] = { 12, 11, 13, 5, 6, 7 }; | ||
|
||
heap(arr); | ||
|
||
for(int i=0;i<arr.length;i++){ | ||
System.out.print(arr[i] + " "); | ||
} | ||
System.out.println(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
public class SudokoSolver { | ||
|
||
static int count = 0; | ||
public static boolean isSafe(int board[][],int row,int col,int digit){ | ||
|
||
//condiron check for column: | ||
for(int i=0;i<9;i++){ | ||
if(board[row][i]==digit){ | ||
return false; | ||
} | ||
} | ||
|
||
//condition check for row: | ||
for(int i=0;i<9;i++){ | ||
if(board[i][col]==digit){ | ||
return false; | ||
} | ||
} | ||
|
||
|
||
//Inside same grid: | ||
int sr = (row/3) * 3; | ||
int sc = (col/3) * 3; | ||
|
||
for(int i=sr;i<sr+3;i++){ | ||
for(int j=sc;j<sc+3;j++){ | ||
if(board[i][j]==digit){ | ||
return false; | ||
} | ||
} | ||
} | ||
|
||
return true; | ||
} | ||
|
||
public static boolean sudokuSolver(int board[][],int row,int col){ | ||
if(row == 9){ | ||
count++; | ||
return true; | ||
} | ||
|
||
int nextRow = row, nextCol = col+1; | ||
if(col+1 == 9){ | ||
nextRow = row+1; | ||
nextCol = 0; | ||
} | ||
|
||
if(board[row][col] != 0){ | ||
return sudokuSolver(board,nextRow,nextCol); | ||
} | ||
|
||
for(int digit=1;digit<=9;digit++){ | ||
if(isSafe(board,row,col,digit)){ | ||
board[row][col] = digit; | ||
if(sudokuSolver(board, nextRow, nextCol)){ | ||
return true; | ||
} | ||
board[row][col] = 0; | ||
} | ||
} | ||
return false; | ||
} | ||
|
||
|
||
public static void printBoard(int board[][]){ | ||
for(int i=0;i<9;i++){ | ||
for(int j=0;j<9;j++){ | ||
System.out.print(board[i][j]+" "); | ||
} | ||
System.out.println(); | ||
} | ||
} | ||
|
||
public static void main(String[] args) { | ||
int[][] board = {{0,0,8,0,0,0,0,0,0}, | ||
{4,9,0,1,5,7,0,0,2}, | ||
{0,0,3,0,0,4,1,9,0}, | ||
{1,8,5,0,6,0,0,2,0}, | ||
{0,0,0,0,2,0,0,6,0}, | ||
{9,6,0,4,0,5,3,0,0}, | ||
{0,3,0,0,7,2,0,0,4}, | ||
{0,4,9,0,3,0,0,5,7}, | ||
{8,2,7,0,0,9,0,1,3}}; | ||
|
||
if(sudokuSolver(board, 0, 0)){ | ||
System.out.println("Solution Exists"); | ||
System.out.println("There are total :"+ count); | ||
printBoard(board); | ||
}else{ | ||
System.out.println("Solution does not existf"); | ||
} | ||
} | ||
} |