【题目描述】
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.
给出一个二维的字母板和一个单词,寻找字母板网格中是否存在这个单词。
单词可以由按顺序的相邻单元的字母组成,其中相邻单元指的是水平或者垂直方向相邻。每个单元中的字母最多只能使用一次。
【题目链接】
www.lintcode.com/en/problem/word-search/
【题目解析】
基本思路比较简单:从board上每一个点出发,用depth first search (DFS)上下左右四方向搜索匹配的word。需要注意到几点:
1、考虑board的边界
2、cell是否已经被遍历过(临时转换为特定标识字符,比如'#',recursion返回后再重置回原来的值,这样可以省去额外开辟二维数组visited[i][j]的空间复杂度)
3、搜索结束的标志是k == word.length()
【参考答案】