-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBacktracking.java
More file actions
271 lines (235 loc) · 7.81 KB
/
Copy pathBacktracking.java
File metadata and controls
271 lines (235 loc) · 7.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
import java.util.*;
import javax.swing.plaf.synth.SynthSpinnerUI;
public class Backtracking {
// Backtracking on Arrays
public static void changeArr(int arr[] , int i , int val) {
// Base Case
if (i == arr.length){
printArr(arr);
return;
}
// Recursion
arr[i] = val;
changeArr(arr, i+1, val + 1);
arr[i] = arr[i] - 2;
}
public static void printArr( int arr[]) {
for (int i = 0; i < arr.length; i++) {
System.out.print(arr[i] + " ");
}
System.out.println();
}
public static void findSubString(String Str , String ans, int i) {
// Base Case
if (i == Str.length()){
if (ans.length() == 0){
System.out.println("null");
}else {
System.out.println(ans);
}
return;
}
// Recursion
// Yes Choice
findSubString(Str, ans + Str.charAt(i), i + 1);
// No Choice
findSubString(Str, ans, i+1);
}
public static void findPermutation(String Str , String ans) {
// Base Case
if (Str.length() == 0){
System.out.println(ans);
return;
}
// Recursion TC = O(n *n!)
for (int i = 0; i < Str.length(); i++){
char curr = Str.charAt(i);
String newStr = Str.substring(0, i) + Str.substring(i + 1);
findPermutation(newStr, ans + curr);
}
}
public static void permutation(String name , String combination) {
// Base Case
if (name.length() == 0){
System.out.println(combination);
return;
}
// Recursion
for (int i = 0; i < name.length(); i++){
char curr = name.charAt(i);
String newName = name.substring(0, i) + name.substring(i + 1);
permutation(newName, combination + curr);
}
}
public static boolean isSafe(char board[][] , int row , int col) {
// Vertically up
for(int i = row - 1; i >= 0; i--){
if (board[i][col] == 'Q'){
return false;
}
}
// diag left up
for (int i = row - 1 , j = col - 1; i >= 0 && j >=0; i-- , j--){
if (board[i][j] == 'Q'){
return false;
}
}
// diag right up
for (int i = row - 1 , j = col + 1; i >= 0 && j < board.length; i-- , j++){
if (board[i][j] == 'Q'){
return false;
}
}
return true;
}
public static boolean nQueens(char board[][] , int row) {
// Base Case
if (row == board.length){
// printQueen(board);
count++;
return true;
}
for (int j = 0; j < board.length; j++) {
if (isSafe(board , row , j)){
board[row][j] = 'Q';
if (nQueens(board, row + 1)){
return true;
} // Function Call
board[row][j] = '.'; // Backtracking Step
}
}
return false;
}
public static void printQueen(char board[][]) {
for (int i = 0; i < board.length; i++){
for (int j = 0; j < board.length; j++){
System.out.print(board[i][j] + " ");
}
System.out.println();
}
System.out.println();
}
public static int gridWays(int i , int j ,int n , int m) {
// Base Case
if ( i == n-1 && j == m-1){ // Condition for last cell
return 1;
}else if (i == n || j == n){ // Condition for boundary cell
return 0;
}
// Recursion equation
int w1 = gridWays(i + 1, j, n, m);
int w2 = gridWays(i, j + 1, n, m);
return w1 + w2;
}
public static boolean isSudokuSafe(int sudoku[][] , int row , int col , int digit) {
// Coloumn
for (int i = 0; i <= 8; i++){
if (sudoku[i][col] == digit){
return false;
}
}
// row
for (int j = 0; j <= 8; j++){
if (sudoku[row][j] == digit){
return false;
}
}
// Grid
int sr = (row / 3) * 3;
int sc = (col / 3) * 3;
//3x3 Grid
for (int i = sr; i < sr + 3; i++){
for (int j = sc; j < sc + 3; j++){
if (sudoku[i][j] == digit){
return false;
}
}
}
return true;
}
public static boolean sudokuSolver(int sudoku[][] , int row , int col) {
// Base Case
if (row == 9){
return true;
}
// Recursion
int nextRow = row , nextCol = col + 1;
if (col + 1 == 9){
nextRow = row + 1;
nextCol = 0;
}
if (sudoku[row][col] != 0){
return sudokuSolver(sudoku, nextRow, nextCol);
}
for (int digit = 1; digit <= 9; digit++){
if (isSudokuSafe(sudoku, row , col, digit)){
sudoku[row][col] = digit;
if (sudokuSolver(sudoku, nextRow, nextCol)){
return true;
}
sudoku[row][col] = 0;
}
}
return false;
}
public static void printSudoku(int sudoku[][]) {
for (int i = 0; i < 9; i++){
for (int j = 0; j < 9; j++){
System.out.print(sudoku[i][j]);
}
System.out.println();
}
}
public static void rat(int ratPath[][] , int sol[][] , int x , int y) {
// Base Case
// Recursion
}
static int count = 0;
public static void main(String[] args) {
// int arr[] = new int[5];
// changeArr(arr, 0, 1);
// printArr(arr);
String Str = "KDTPA";
// findSubString(Str, "", 0);
findPermutation(Str, "");
// int n = 3;
// char board[][] = new char[n][n];
// for (int i = 0; i < n; i++){
// for (int j = 0; j < n; j++){
// board[i][j] = '.';
// }
// }
// if (nQueens(board , 0)){
// System.out.println("Solution is possible");
// printQueen(board);
// }else{
// System.out.println("Solution is not possible");
// }
// System.out.println("The total number of ways to which n can be print " + count);
// System.out.print(gridWays(0 , 0, 3, 4));
// int sudoku[][] = {{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(sudoku, 0, 0)){
// System.out.println(" The Solution exist");
// printSudoku(sudoku);
// }else{
// System.out.println(" The Solution does not exist");
// }
// permutation("BEK", "");
// int ratPath[][] = {{1,0,0,0},
// {1,1,0,1},
// {0,1,0,0},
// {1,1,1,1}};
// int sol[][] = {{0,0,0,0},
// {0,0,0,0},
// {0,0,0,0},
// {0,0,0,0}};
}
}