-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathWordSearch.java
More file actions
58 lines (39 loc) · 1.65 KB
/
Copy pathWordSearch.java
File metadata and controls
58 lines (39 loc) · 1.65 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
public class WordSearch {
public static boolean dfs(char[][] board, String word, boolean[][] visited, int start_i, int start_j, int index) {
if(index == word.length())
return true;
if(start_i < 0 || start_j < 0 || start_i >= board.length || start_j >= board[0].length || visited[start_i][start_j] || board[start_i][start_j]!=word.charAt(index)) {
return false;
}
visited[start_i][start_j] = true;
boolean res = dfs(board, word, visited, start_i, start_j + 1, index + 1) ||
dfs(board, word, visited, start_i, start_j - 1, index + 1) ||
dfs(board, word, visited, start_i + 1, start_j, index + 1) ||
dfs(board, word, visited, start_i - 1, start_j, index +1);
visited[start_i][start_j] = false;
return res;
}
public static boolean exist(char[][] board, String word) {
if (word.isEmpty()) {
return false;
}
boolean[][] visited = new boolean[board.length][board[0].length];
for (int i = 0; i < board.length; i++) {
for (int j = 0; j < board[0].length; j++) {
if (dfs(board, word, visited, i, j, 0)) {
return true;
}
}
}
return false;
}
public static void main(String[] args) {
char[][] board = {
{'A', 'B', 'C', 'E'},
{'S', 'F', 'C', 'S'},
{'A', 'D', 'E', 'E'}
};
assert exist(board, "ABCCED") == true;
assert exist(board, "ABCB") == false;
}
}