c语言sscanf函数的用法是什么
254
2022-11-14
[leetcode] 79. Word Search
Description
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.
Example:
board =[ ['A','B','C','E'], ['S','F','C','S'], ['A','D','E','E']]Given word = "ABCCED", return true.Given word = "SEE", return true.Given word = "ABCB", return false.
分析
题目的意思是:判断字符矩阵中是否存在一条路径组成的单词等于题目给定的单词。
深度优先搜索题目,这是一个经典的递归搜索的题目,终止条件为遍历到word单词的末尾字符了。循环体注意不要超过这个矩阵的边界,因此需要isOut判断一下。
代码
class Solution {public: bool exist(vector
参考文献
[编程题]word-search
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~