首页 > 其他 > 详细

Word Search

时间:2014-07-31 17:16:57      阅读:365      评论:0      收藏:0      [点我收藏+]
-----QUESTION-----

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.

-----SOLUTION-----

class Solution {
public:
    bool exist(vector<vector<char> > &board, string word) {
        if(board.empty()) return false;
        vector<vector<bool>> visited(board.size(), vector<bool>(board[0].size(), false));
        bool result = false;
        for(int i = 0; i < board.size(); i++)
        {
            for(int j = 0; j < board[0].size(); j++)
            {
                 result = dfs(board,word,i,j,0,visited);
                 if(result) return true;
                 visited[i][j] = false;
            }
        }
        return false;
    }
    bool dfs(vector<vector<char> > &board, string word, int i, int j, int depth, vector<vector<bool>> &visited)
    {
        if(board[i][j] != word[depth]) return false;
        if(depth == word.length()-1) return true;
        visited[i][j] = true;
        if(j < board[0].size()-1 && !visited[i][j+1]){
            if(dfs(board,word, i, j+1, depth+1,visited)) return true;
            else visited[i][j+1] = false;
        }
        if(j > 0 && !visited[i][j-1])
        {
            if(dfs(board,word, i, j-1, depth+1,visited)) return true;
            else visited[i][j-1] = false;
        }
        if(i < board.size()-1 && !visited[i+1][j]) 
        {
            if(dfs(board,word, i+1, j, depth+1,visited)) return true;
            else visited[i+1][j] = false;
        }
        if(i > 0  && !visited[i-1][j]) 
        {
            if(dfs(board, word, i-1, j, depth+1,visited)) return true;
            else visited[i-1][j] = false;
        }
        return false;
    }
};


Word Search,布布扣,bubuko.com

Word Search

原文:http://blog.csdn.net/joannae_hu/article/details/38316061

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!