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 =

[
['A','B','C','E'],
['S','F','C','S'],
['A','D','E','E']
]

word = "ABCCED", -> returns true,
word = "SEE", -> returns true,
word = "ABCB", -> returns false.

分析: 刚开始做的时候有误解,实际上就是从矩阵中找一条线路求解出word dfs求解最方便,注意一下边界范围

class Solution {
private:
int rows;
int cols;
public:
bool exist(vector<vector<char>>& board, string word) {
rows = board.size();
cols = board[].size();
for(int i=; i< rows; i++)
for(int j=;j<cols; j++){
if(dfs(board,i,j,word,))
return true;
}
return false;
}
bool dfs(vector<vector<char>>& board, int x, int y,string word, int index){
//cout << x << " "<<y <<endl;
//cout << "index = "<<index<<endl;
if(x< || y< || x>=rows || y>=cols || (index<word.size() && board[x][y]!=word[index]) )
return false;
if(index+ == word.size()){
return true;
}
char c =board[x][y];
board[x][y] = '.';
if(dfs(board,x-,y,word,index+) || dfs(board,x+,y,word,index+)
|| dfs(board,x,y-,word,index+) || dfs(board,x,y+,word,index+))
return true; board[x][y] =c; return false;
}
};

  

最新文章

  1. iOS-APP提交上架流程(新手必看!2016年3月1日最新版)
  2. SpringMVC 自动封装枚举类的方法
  3. AngularJs基础(一)
  4. css3之转换
  5. HttpClient读取ASP.NET Web API错误信息的简单方法
  6. Cocos2d-x 2.x项目创建
  7. eclipse里添加类似myeclipse打开当前操作目录
  8. Android的读写文件权限
  9. FZU 2122 又见LKity(KMP+返回所有匹配位置)
  10. 使用xcrun打包iOS应用
  11. ABP官方文档翻译 4.1 应用服务
  12. python 正则表达式Re
  13. Docker 新手入门
  14. 学习笔记—CSS基础
  15. css实现图片等比例缩放
  16. DataTable转list时 可空类型的转换问题
  17. c++11新标准for循环和lambda表达式
  18. Maven Archetype简介以及搭建
  19. 提升PHP安全:8个必须修改的PHP默认配置
  20. MySQL 快速构造一亿条记录的表

热门文章

  1. JVM学习(1)——通过实例总结Java虚拟机的运行机制
  2. 【小型系统】简单的刷票系统(突破IP限制进行投票)
  3. ASP.NET Core 中文文档 第三章 原理(7)配置
  4. js给DropdownList赋值
  5. 【Java每日一题】20161230
  6. 【Java每日一题】20161229
  7. android ImageView网络图片加载、动态设置尺寸、圆角..
  8. 转载:TypeScript 简介与《TypeScript 中文入门教程》
  9. 缓冲区溢出利用——捕获eip的傻瓜式指南
  10. 使用Kotlin对ViewGroup的视图进行函数使操作