-
Notifications
You must be signed in to change notification settings - Fork 522
/
Copy path7. Word Search.cpp
45 lines (33 loc) · 1.43 KB
/
7. Word Search.cpp
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
/*
#Hacktoberfest2021
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 = "ABCB"
Output: false
*/
class Solution {
public:
bool exist(vector<vector<char>>& board, string word) {
for (unsigned int i = 0; i < board.size(); i++)
for (unsigned int j = 0; j < board[0].size(); j++)
if (dfs(board, i, j, word))
return true;
return false;
}
bool dfs(vector<vector<char>>& board, int i, int j, string& word) {
if (!word.size())
return true;
if (i<0 || i>=board.size() || j<0 || j>=board[0].size() || board[i][j] != word[0])
return false;
char c = board[i][j];
board[i][j] = '*';
string s = word.substr(1);
bool ret = dfs(board, i-1, j, s) || dfs(board, i+1, j, s) || dfs(board, i, j-1, s) || dfs(board, i, j+1, s);
board[i][j] = c;
return ret;
}
};