Word Search(深度搜索DFS,参考)
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 =
[
["ABCE"],
["SFCS"],
["ADEE"]
]
word = "ABCCED", -> returns true,
word = "SEE", -> returns true,
word = "ABCB", -> returns false.
头次接触这类题目,对我来说还是有难度的,其实这类题的难点就在于,单纯的DFS,是无法在回溯到某一点的时候去改变该点的状态,因为你无法判断回溯到了哪一点(至少我没有做出来~)。那么用一个for循环,里面是递归这种形式,可以做到的,我想这就是回溯和所谓的DFS的区别吧。
我做过的与该题类似的题目:
Letter Combinations of a Phone Number(带for循环的DFS,组合问题,递归总结)
leedcode:Combinations
算法核心:回溯在现实生活中就是一种试探的尝试,例如,你很久以前去过一个地方,只很清楚记得目的地的一个特征(假设到时你能知道),现在你在一个十字路口,不知哪个方向是目的地所在的方向,那就只能选择一个方向进行试探,如果运气不好的话,错了,就只能回到十字路口,在进行下一个方向的尝试,这个回到十字路口就是一种回溯
回到该题思路:首先找到头节点,然后开始深搜,深搜的过程需要记录该点是否被纳入到我们的路径中,因为每个点是只能用一次的。
错误DFS代码,因为他在回溯的时候无法改变已经访问过的点,如果我们在某一点a[i][j]处,它的上下都能走,但是上只能走一步(也就是说a[i-1][j]的上下左右都是不符合条件的),所以我们在回到a[i][j]处的时候需要把刚刚向上走的那一点(a[i-1][j])的访问状态置回false,因为该点可能在以后成为我们需要再次访问的点,但是现在我们并没有把该点加入到我们的路径中:
class Solution {
private:
vector<vector<char>> m_board;
bool visited[][];
string m_word;
int max_row;
int max_col;
public:
bool dfs(int dep,int i,int j)
{
if(i<||i==max_row||j<||j==max_col)
return false;
if(m_board[i][j]!=m_word[dep])
return false;
if(dep!=m_word.size()-)
visited[i][j]=true;
if(visited[i][j]==false&&dep==m_word.size()-)
return true;
return dfs(dep+,i-,j)||dfs(dep+,i+,j)||dfs(dep+,i,j-)||dfs(dep+,i,j+);//某一层的上下左右都无路的时候,要把访问标志置回false
}
bool exist(vector<vector<char>> &board, string word) {
//找到起始位置
m_board=board;
m_word=word;
max_row=m_board.size();
max_col=m_board[].size();
for (int i=;i<max_row;++i)
{
for (int j=;j<max_col;++j)
{
if(m_board[i][j]==m_word[]){
memset(tag,,sizeof(tag));
visited[i][j]=true;
if(dfs(,i,j))
return true;
else {
continue;
visited[i][j]=false;
}
}
}
}
return false;
}
};
简单说下我的理解:以前一个点为基础,来搜索它的上下左右,若搜到一点,则一直往下,直到”撞墙“或者不满足条件,就回溯。就是这种走到顶,然后回溯,又走又回溯,直到找到最后的结果。
参考代码:
const int MAX=;
int dire[][]={-,,,,,-,,};
bool visited[MAX][MAX];
class Solution {
private:
vector<vector<char>> m_board;
string m_word;
int max_row;
int max_col;
bool res;
public:
void dfs(int dep,int i,int j)
{
if(dep==m_word.size()){
res=true;
return;
}
for (int q=;q<;++q)
{
int newi=dire[q][]+i;
int newj=dire[q][]+j;
if(newi>=&&newi<max_row&&newj>=&&newj<max_col&&m_board[newi][newj]==m_word[dep]&&!visited[newi][newj])
{
visited[newi][newj]=true;
dfs(dep+,newi,newj);
visited[newi][newj]=false;//该位置上下左右都不通
}
}
}
bool exist(vector<vector<char>> &board, string word) {
//找到起始位置
res=false;
m_board=board;
m_word=word;
max_row=m_board.size();
max_col=m_board[].size();
for (int i=;i<max_row;++i)
{
for (int j=;j<max_col;++j)
{
if(m_board[i][j]==m_word[]){
memset(visited,,sizeof(visited));
visited[i][j]=true;
dfs(,i,j);
if(res)
return true;
else{
visited[i][j]=false;
continue;
}
}
}
}
return false;
}
}; int main()
{
freopen("C:\\Users\\Administrator\\Desktop\\a.txt","r",stdin);
vector<char> a;a.push_back('A');a.push_back('B');a.push_back('C');a.push_back('F');
vector<char> b;b.push_back('W');b.push_back('G');b.push_back('C');b.push_back('G');
vector<char> c;c.push_back('B');c.push_back('A');c.push_back('F');c.push_back('Q');
vector<vector<char>> d;
d.push_back(a);d.push_back(b);d.push_back(c);
Solution so;
cout<<so.exist(d,"ABCCF")<<endl;
cout<<so.exist(d,"FGQ")<<endl;
cout<<so.exist(d,"ABCCGQFAG")<<endl;
return ;
}
Word Search(深度搜索DFS,参考)的更多相关文章
- [LeetCode OJ] Word Search 深度优先搜索DFS
Given a 2D board and a word, find if the word exists in the grid. The word can be constructed from l ...
- [LeetCode] 79. Word Search 单词搜索
Given a 2D board and a word, find if the word exists in the grid. The word can be constructed from l ...
- [LeetCode] Word Search 词语搜索
Given a 2D board and a word, find if the word exists in the grid. The word can be constructed from l ...
- [LeetCode] 79. Word Search 词语搜索
Given a 2D board and a word, find if the word exists in the grid. The word can be constructed from l ...
- 079 Word Search 单词搜索
给定一个二维面板和一个单词,找出该单词是否存在于网格中.这个词可由顺序相邻的单元格内的字母构成,其中“相邻”单元格是那些水平相邻或垂直相邻的单元格.同一个单元格内的字母不允许被重复使用.例如,给定 二 ...
- LeetCode 79. Word Search单词搜索 (C++)
题目: Given a 2D board and a word, find if the word exists in the grid. The word can be constructed fr ...
- Leetcode79. Word Search单词搜索
给定一个二维网格和一个单词,找出该单词是否存在于网格中. 单词必须按照字母顺序,通过相邻的单元格内的字母构成,其中"相邻"单元格是那些水平相邻或垂直相邻的单元格.同一个单元格内的字 ...
- 数据结构之 栈与队列--- 走迷宫(深度搜索dfs)
走迷宫 Time Limit: 1000MS Memory limit: 65536K 题目描述 一个由n * m 个格子组成的迷宫,起点是(1, 1), 终点是(n, m),每次可以向上下左右四个方 ...
- [LeetCode] 212. Word Search II 词语搜索 II
Given a 2D board and a list of words from the dictionary, find all words in the board. Each word mus ...
随机推荐
- [BZOJ1004][HNOI2008]Cards 群论+置换群+DP
题目链接:http://www.lydsy.com/JudgeOnline/problem.php?id=1004 首先贴几个群论相关定义和引理. 群:G是一个集合,*是定义在这个集合上的一个运算. ...
- BootStrap Select2组件
想使用Select2组件必须引用:select2.min.css和select2.min.js两个文件:如下: 页面写法很简单: 在这里多选是没有搜索功能的,只有单选的时候才会有搜索功能. Selec ...
- 从单机到2000万 QPS 并发的 Redis 高性能缓存实践之路
1.引言 知乎存储平台团队基于开源Redis 组件打造的知乎 Redis 平台,经过不断的研发迭代,目前已经形成了一整套完整自动化运维服务体系,提供很多强大的功能.本文作者陈鹏是该系统的负责人,本次文 ...
- 使用过Fetch之后,你还想使用AJAX吗
之前做数据交互的时候,请求数据一直使用ajax,看到网上有使用Fetch,所以也想拿来尝尝鲜 本次介绍只涉及fetch相关,传统的ajax基本上不涉及 当然你也要考虑兼容.浏览器支持情况. 一会这个只 ...
- 掌握Spark机器学习库(课程目录)
第1章 初识机器学习 在本章中将带领大家概要了解什么是机器学习.机器学习在当前有哪些典型应用.机器学习的核心思想.常用的框架有哪些,该如何进行选型等相关问题. 1-1 导学 1-2 机器学习概述 1- ...
- WordPress更改固定链接出现404
新浪SAE的前端采用的是nginx,nginx是不识别.htaccess的. 最后学习了新浪SAE官方教程——应用配置模块 – AppConfig终于把问题解决! 1.修改你SAE SDK站点目录下的 ...
- charsets - 程序员对字符集和国际化的观点
描述 Linux 是一个国际性的操作系统.它的各种各样实用程序和设备驱动程序 (包括控制台驱动程序 ) 支持多种语言的字符集,包括带有附加符号的拉丁字母表字符,重音符,连字(字母结合), 和全部非拉丁 ...
- Mybatis输入输出映射_动态sql_关联关系(一对一、一对多、多对多)
Mybatis输入输出映射_动态sql_关联关系(一对一.一对多.多对多)输入输出映射parameterType完成输入映射parameterType可以传入的参数有,基本数据类型(根据id查询用户的 ...
- babun
Table of Contents 1. 环境 2. 检查/更新 3. 包管理 4. 版本管理 Git 4.1. 设置姓名邮箱(全局方式) 4.2. 添加 SSH 4.3. 链接测试 4.4. 权 ...
- sql 触发器 针对一张表数据写入 另一张表 的增删改
ALTER TRIGGER [dbo].[tri_test2] ON [dbo].[student] for INSERT,DELETE,UPDATEAS BEGIN if not exists (s ...