-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathWordSearch.java
103 lines (91 loc) · 2.91 KB
/
WordSearch.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
package by.andd3dfx.search.wordsearch;
/**
* <pre>
* <a href="https://leetcode.com/problems/word-search/">Task description</a>
*
* Given an m x n grid of characters board and a string word, return true if word exists in the grid.
*
* The word can be constructed from letters of sequentially adjacent cells, where adjacent cells are horizontally
* or vertically neighboring. The same letter cell may not be used more than once.
*
* Example 1:
*
* Input: board = [
* ["A","B","C","E"],
* ["S","F","C","S"],
* ["A","D","E","E"]], word = "ABCCED"
* Output: true
*
* Example 2:
*
* Input: board = [
* ["A","B","C","E"],
* ["S","F","C","S"],
* ["A","D","E","E"]], word = "SEE"
* Output: true
*
* Example 3:
*
* Input: board = [
* ["A","B","C","E"],
* ["S","F","C","S"],
* ["A","D","E","E"]], word = "ABCB"
* Output: false
* </pre>
*
* @see <a href="https://youtu.be/FsKU04anMtE">Video solution</a>
*/
public class WordSearch {
public boolean exist(char[][] board, String word) {
var m = board.length;
var n = board[0].length;
for (int i = 0; i < m; i++) {
for (int j = 0; j < n; j++) {
if (checkIsCharacterSuitable(board, i, j, word, 0)) {
boolean[][] visited = new boolean[m][n];
visited[i][j] = true;
if (findNextCharacter(board, i, j, word, 1, visited)) {
return true;
}
}
}
}
return false;
}
private boolean findNextCharacter(char[][] board, int i, int j, String word, int pos, boolean[][] visited) {
if (pos >= word.length()) {
return true;
}
if (checkNewPos(board, i - 1, j, word, pos, visited)) {
return true;
}
if (checkNewPos(board, i, j - 1, word, pos, visited)) {
return true;
}
if (checkNewPos(board, i + 1, j, word, pos, visited)) {
return true;
}
if (checkNewPos(board, i, j + 1, word, pos, visited)) {
return true;
}
return false;
}
private boolean checkNewPos(char[][] board, int i, int j, String word, int pos, boolean[][] visited) {
var m = board.length;
var n = board[0].length;
if (i < 0 || j < 0 || i >= m || j >= n) {
return false;
}
if (!visited[i][j] && checkIsCharacterSuitable(board, i, j, word, pos)) {
visited[i][j] = true;
if (findNextCharacter(board, i, j, word, pos + 1, visited)) {
return true;
}
visited[i][j] = false;
}
return false;
}
private boolean checkIsCharacterSuitable(char[][] board, int i, int j, String word, int pos) {
return board[i][j] == word.charAt(pos);
}
}