【leetcode】Word Search (middle)

回溯法解决二维矩阵单词搜索问题
本文介绍了一种使用回溯法解决二维矩阵中寻找特定单词的问题。通过逐行搜索并回溯以避免重复使用同一字母位置,实现高效搜索。提供了两种不同实现方式,一种时间效率为520ms,另一种优化后降至100ms。

今天开始,回溯法强化阶段。

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.

 

思路:

因为已经知道是回溯法,所以就按步骤来就好了

AC了,但时间挺长的520ms

class Solution {
public:
    bool exist(vector<vector<char> > &board, string word) {
        vector<vector<int>> S(word.length());
        vector<int> X(word.length());
        int row = board.size();
        if(row == 0)
            return word.length() == 0;

        int col = board[0].size();
        //找第一个字母的位置
        for(int i = 0; i < row; i++)
        {
            for(int j = 0; j < col; j++)
            {
                if(board[i][j] == word[0])
                    S[0].push_back(i * col + j);
            }
        }

        int k = 0;
        //回溯求解
        while(k >= 0)
        {
            while(!S[k].empty())
            {
                int loc = S[k].back();
                X[k] = loc;
                int r = loc / col;
                int c = loc % col;
                S[k].pop_back();
                if(k < word.length() - 1)
                {
                    k = k + 1;
                    if(r - 1 >= 0 && board[r - 1][c] == word[k]) //上面的
                    {
                        int loctmp = (r - 1) * col + c;
                        if(!isAlreadyExist(X, k, loctmp))
                            S[k].push_back(loctmp);
                    }
                    if(r + 1 < row && board[r + 1][c] == word[k]) //下面的
                    {
                        int loctmp = (r + 1) * col + c;
                        if(!isAlreadyExist(X, k, loctmp))
                            S[k].push_back(loctmp);
                    }
                    if(c - 1 >= 0 && board[r][c - 1] == word[k]) //左边的
                    {
                        int loctmp = r * col + c - 1;
                        if(!isAlreadyExist(X, k, loctmp))
                            S[k].push_back(loctmp);
                    }
                    if(c + 1 < col && board[r][c + 1] == word[k]) //右边的
                    {
                        int loctmp = r * col + c + 1;
                        if(!isAlreadyExist(X, k, loctmp))
                            S[k].push_back(loctmp);
                    }

                }
                else
                {
                    return true;
                }
            }
        k = k - 1;
        }
        return false;
    }

    bool isAlreadyExist(vector<int> X, int k, int loc)
    {
        for(int i = 0; i < k; i++)
        {
            if(X[i] == loc)
                return true;
        }
        return false;
    }
};

 

大神100ms的代码,用的递归,在判断是否已经用过时直接查找表,会快很多。 没有找第一个字母的位置,而是统一看待,代码量会少一点

class Solution {
private:
    vector<vector<char> > *board;
    string *word;
    bool **used;
private:
    bool isInboard(int i, int j)
    {
        if(i < 0)return false;
        if(i >= board->size())return false;
        if(j < 0)return false;
        if(j >= (*board)[i].size())return false;
        return true;
    }

    bool DFS(int si, int sj, int n)
    {
        if(n == word->size())return true;
        if(isInboard(si, sj))
        {
            if(!used[si][sj] && (*board)[si][sj] == (*word)[n])
            {
                used[si][sj] = true;
                bool ret = false;
                if(DFS(si+1, sj, n+1))
                    ret = true;
                else if(DFS(si-1, sj, n+1))
                    ret = true;
                else if(DFS(si, sj+1, n+1))
                    ret = true;
                else if(DFS(si, sj-1, n+1))
                    ret = true;
                used[si][sj] = false;
                return ret;
            }
        }
        return false;
    }

public:
    bool exist(vector<vector<char> > &board, string word) {
        if(board.size() == 0)return false;
        this->board = &board;
        this->word = &word;
        used = new bool*[board.size()];
        for(int i = 0; i < board.size(); i ++)
        {
            used[i] = new bool[board[i].size()];
            for(int j = 0; j < board[i].size(); j ++)
                used[i][j] = false;
        }
        for(int i = 0; i < board.size(); i ++)
            for(int j = 0; j < board[i].size(); j ++)
                if(DFS(i, j, 0))return true;
        return false;
    }
};

 

转载于:https://www.cnblogs.com/dplearning/p/4195592.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值