LeetCode OJ - Word Search *

来源:互联网 发布:淘宝怎么改库存 编辑:程序博客网 时间:2024/06/10 18:50

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简单题,关键在于记录被访问过的元素


0 0
原创粉丝点击