NC242 单词搜索
- 题目
- 题解(8)
- 讨论(9)
- 排行
- 面经
new
中等 通过率:17.73% 时间限制:1秒 空间限制:256M
描述
给出一个二维字符数组和一个单词,判断单词是否在数组中出现,
单词由相邻单元格的字母连接而成,相邻单元指的是上下左右相邻。同一单元格的字母不能多次使用。
数据范围:
0 < 行长度 <= 100
0 < 列长度 <= 100
0 < 单词长度 <= 1000
思路:
动态递归的做法,
从每一个可能是开头的地方出发,依次上下左右尝试看看是否有成功的可能,如果有可能就继续,直到已经没有地方可以走或者找到为止。
此处需要用一个数组V记录已经走过的下标,因为题目要求同一个位置不能多次使用。
和扫雷模拟实现差不多。
class Solution {
public:
/**
* 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
*
*
* @param board string字符串vector
* @param word string字符串
* @return bool布尔型
*/
vector<pair<int,int>>kk={{1,0},{-1,0},{0,-1},{0,1}};
int n;
int m;
bool get(vector<string>& board, string word,int row,int col,int stdown, vector<vector<bool>>&v)
{
if(stdown==word.size()-1&&board[row][col]==word[stdown])
return true;
if(board[row][col]!=word[stdown])
return false;
int f=false;
v[row][col]=true;
for(auto e:kk)
{
int x1=row+e.first,y1=col+e.second;
if(x1>=0&&x1<n&&y1>=0&&y1<m&&v[x1][y1]==false)
{
f|= get(board,word,x1,y1,stdown+1,v);
}
}
v[row][col]=false;
return f;
}
bool exist(vector<string>& board, string word) {
// write code here
//递归?
n=board.size();
m=board[0].size();
vector<vector<bool>>v(n,vector<bool>(m));
if(word.size()==0)
return true;
else
{
for(int i=0;i<board.size();i++)
{
for(int j=0;j<board[0].size();j++)
{
if(board[i][j]==word[0])
{
if(get(board,word,i,j,0,v))
return true;
}
}
}
return false;
};
}
};