-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJuly21_2020.java
49 lines (36 loc) · 1.3 KB
/
July21_2020.java
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
// Find a word from a matrix .... dfs problem ..RECURSION is the key.
class Solution {
public boolean exist(char[][] board, String word) {
int m = board.length;
int n = board[0].length;
boolean res = false;
for(int i=0; i < m; i++) {
for(int j=0; j < n; j++) {
if(checkForWord(board, word, i, j, 0)) {
res = true;
}
}
}
return res;
}
// Depth first search ....
public boolean checkForWord(char[][] board, String word, int i, int j, int k) {
int m = board.length;
int n = board[0].length;
if(i < 0 || j < 0 || i >= m || j >= n){
return false;
}
if(board[i][j] == word.charAt(k)){
char temp = board[i][j];
board[i][j] = '$';
if(k == word.length()-1){
return true;
}
else if(checkForWord(board, word, i-1, j, k+1) || checkForWord(board, word, i+1, j, k+1) || checkForWord(board, word, i, j-1, k+1) || checkForWord(board, word, i, j+1, k+1)) {
return true;
}
board[i][j] = temp;
}
return false;
}
}