-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path079_WordSearch79.java
135 lines (102 loc) · 3.15 KB
/
079_WordSearch79.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
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
/**
* Given a 2D board and a word, find if the word exists in the grid.
*
* The word can be constructed from letters of sequentially adjacent cell,
* where "adjacent" cells are those horizontally or vertically neighboring.
* The same letter cell may not be used more than once.
*
* For example,
* Given board =
*
* [
* ['A','B','C','E'],
* ['S','F','C','S'],
* ['A','D','E','E']
* ]
* word = "ABCCED", -> returns true,
* word = "SEE", -> returns true,
* word = "ABCB", -> returns false.
*
*/
public class WordSearch79 {
public boolean exist(char[][] board, String word) {
if (word.length() == 0) {
return true;
}
if (board.length == 0) {
return false;
}
int m = board.length;
int n = board[0].length;
for (int i = 0; i < m; i++) {
for (int j = 0; j < n; j++) {
boolean[][] visited = new boolean[m][n];
if (helper(i, j, 0, board, word, visited)) {
return true;
}
}
}
return false;
}
private boolean helper(int i, int j, int index, char[][] board, String word, boolean[][] visited) {
if (index >= word.length()) {
return true;
}
if (i < 0 || i >= board.length || j < 0 || j >= board[0].length) {
return false;
}
if (visited[i][j] || board[i][j] != word.charAt(index)) {
return false;
}
visited[i][j] = true;
if (helper(i, j+1, index + 1, board, word, visited) ||
helper(i+1, j, index + 1, board, word, visited) ||
helper(i, j-1, index + 1, board, word, visited) ||
helper(i-1, j, index + 1, board, word, visited)) {
return true;
}
visited[i][j] = false;
return false;
}
/**
* https://discuss.leetcode.com/topic/7907/accepted-very-short-java-solution-no-additional-space
*/
public boolean exist2(char[][] board, String word) {
if (word.length() == 0) {
return true;
}
if (board.length == 0) {
return false;
}
int m = board.length;
int n = board[0].length;
for (int i = 0; i < m; i++) {
for (int j = 0; j < n; j++) {
if (helper(i, j, 0, board, word)) {
return true;
}
}
}
return false;
}
private boolean helper(int i, int j, int index, char[][] board, String word) {
if (index >= word.length()) {
return true;
}
if (i < 0 || i >= board.length || j < 0 || j >= board[0].length) {
return false;
}
if (board[i][j] != word.charAt(index)) {
return false;
}
board[i][j] ^= 256;
if (helper(i, j+1, index + 1, board, word) ||
helper(i+1, j, index + 1, board, word) ||
helper(i, j-1, index + 1, board, word) ||
helper(i-1, j, index + 1, board, word)) {
return true;
}
board[i][j] ^= 256;
return false;
}
}