码迷,mamicode.com
首页 > 其他好文 > 详细

Word Search

时间:2016-07-04 21:58:05      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:

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.

在二维矩阵里搜索单词,显然是把这个二维的矩阵当作图来操作的,以二维矩阵的每一个点开始做DFS,看能否找到单词,遇到不符合的情况则回退,不再向下进行。因为题目要求同一个字母单元不能被重复使用,所以需要维护一个visited矩阵,将此次DFS过程中用到的点都置为True。当处理完一次路径,需要将该路径经过的所有结点的visited都置为False。一遍别的路径使用。代码如下:

class Solution(object):
    def exist(self, board, word):
        """
        :type board: List[List[str]]
        :type word: str
        :rtype: bool
        """
        if not board and word:
            return False
        if not board and not word:
            return True
        visited = [[False] * len(board[0]) for i in xrange(len(board))]
        for i in xrange(len(board)):
            for j in xrange(len(board[0])):
                if  self.search(board, visited, word, 0, i, j):
                    return True
        return False
        
    def search(self, board, visited, word, i, x, y):
        if i == len(word):
            return True
        if x < 0 or y < 0 or x >= len(board) or y >= len(board[0]) or visited[x][y] or word[i] != board[x][y]:
            return False
        visited[x][y] = True
        res = self.search(board, visited, word, i+1, x+1, y) or               self.search(board, visited, word, i+1, x, y+1) or               self.search(board, visited, word, i+1, x-1, y) or               self.search(board, visited, word, i+1, x, y-1)
        visited[x][y] = False
        return res

这题最坏一共进行O(m*n)次遍历。每次DFS的顶点数为m*n,边数也为m*n,总的时间复杂度为O(m*n) (O(V+E). 所以时间复杂度最坏是O(m^2*n^2).空间复杂度是栈的高度和visited矩阵中的比较大的值。O(m*n).栈高度最高也是O(m*n)级别的。

Word Search

标签:

原文地址:http://www.cnblogs.com/sherylwang/p/5641718.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!