算法设计与应用基础:第十六周(1)

 

79. Word Search

  • Total Accepted: 122901
  • Total Submissions: 468065
  • Difficulty: Medium
  • Contributor: LeetCode

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,对于遍历到的每一个点继续遍历它可以达到的其他点,这个过程中如果找到了word就返回ture,否则最后返回false,注意递归调用中维护visited数组(即每次对一个点上锁和解锁。代码如下:
class Solution {
public:
    bool dfs(vector<vector<char>>&board, string word, int count, int row, int col, vector<vector<int>>&visited)  
    {  
        if (count == word.size() - 1)  
            return true;  
        visited[row][col] = 1;//已经访问locked
        if (row + 1 < board.size() &&visited[row+1][col]==0&& board[row + 1][col] == word[count + 1] )  
            if (dfs(board, word, count + 1, row + 1, col, visited))  
                return true;  
        if (row - 1 >= 0 &&visited[row-1][col]==0&& board[row - 1][col] == word[count + 1] )  
            if (dfs(board, word, count + 1, row - 1, col, visited))  
                return true;  
        if (col + 1 < board[0].size() &&visited[row][col+1]==0&& board[row][col + 1] == word[count + 1] )  
            if (dfs(board, word, count + 1, row, col + 1, visited))  
                return true;  
        if (col - 1 >= 0 &&visited[row][col-1]==0&& board[row][col - 1] == word[count + 1] )  
            if (dfs(board, word, count + 1, row, col - 1, visited))  
                return true;  
        visited[row][col] = 0;//失败之后要恢复到未访问的状态  unlocked
        return false;  
    }  
public:  
    bool exist(vector<vector<char>>& board, string word) {  
        if (word.size() == 0)  
            return true;  
        int row = board.size();  
        int col = board[0].size();  
        vector<vector<int>>visited(row, vector<int>(col));  
        //0----unvisited  
        //1----visited  
        if (row == 0 || col == 0)  
            return false;  
        for (int i = 0; i < row; i++)  
        {  
            for (int j = 0; j < col; j++)  
            {  
                if (board[i][j] == word[0])  
                {  
                    if (dfs(board, word, 0, i, j, visited))//开始递归  
                        return true;  
                }  
            }  
        }  
        return false;  
    }  
};
注:这道题一开始是想用非递归来写的,但是因为无法解决回路的问题,最后不得已用了递归的方法,非递归的方法想出来了再补充。
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值