Skip to content

Commit 62d5339

Browse files
author
“gitgou”
committed
回溯法 exist
1 parent ae258b2 commit 62d5339

File tree

1 file changed

+41
-0
lines changed

1 file changed

+41
-0
lines changed

exist.cpp

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
#include<iostream>
2+
#include<vector>
3+
#include<algorithm>
4+
#include<string>
5+
using namespace std;
6+
7+
bool back(vector<vector<char>>& board, string word, vector<vector<bool>>& hash, int row, int col){
8+
if(word.size() == 0)
9+
return true;
10+
if(row < 0 || row >= board.size() || col < 0 || col >= board[0].size())
11+
return false;
12+
if(hash[row][col] == true)
13+
return false;
14+
if(board[row][col] != word[0])
15+
return false;
16+
17+
hash[row][col] = 1;
18+
word = word.substr(1);
19+
if(back(board, word, hash, row - 1, col) == false &&
20+
back(board, word, hash, row + 1, col) &&
21+
back(board, word, hash, row , col - 1) &&
22+
back(board, word, hash, row , col + 1)){
23+
hash[row][col] = false;
24+
return false;
25+
}
26+
27+
return true;
28+
}
29+
30+
bool exist(vector<vector<char>>& board, string word) {
31+
vector<vector<bool> > hash(board.size(), vector<bool>(board[0].size(), false));
32+
for(int i = 0; i < board.size(); ++i){
33+
for(int j = 0; j < board[0].size(); ++j){
34+
if(back(board, word, hash, i, j)){
35+
return true;
36+
}
37+
}
38+
}
39+
return false;
40+
41+
}

0 commit comments

Comments
 (0)