[力扣] 剑指 Offer 12. 矩阵中的路径

文章提供了一个使用DFS(深度优先搜索)解决特定问题的C++代码模板,主要关注了在遍历过程中如何使用二维数组vis来优化搜索速度,避免重复访问,并在给定的字符矩阵中查找目标单词的存在性。代码中还包含了一个用于恢复搜索状态的回溯机制。
摘要由CSDN通过智能技术生成

题目:
在这里插入图片描述

关于DFS的一般写法,要注意的是:

  1. 置vis要放在for的外面,而不是在for的里面
  2. 用数组作为vis的速度会远远快于用set作为vis的速度
  3. 可以将下面的这一份代码作为dfs的一般模板
class Solution {
public:
    int vis[20][20];
    // string now = "";
    int flag = 0;

    void dfs(vector<vector<char>>& board, string word, int x, int y, string& now) {
        if(now.length() > word.length() + 1) return ;

        int dir[][2] = {
            {1,0},  // 下 
            {-1,0}, // 上
            {0,1},  // 右
            {0,-1}  // 左
        };   

        vis[x][y] = 1;

        if(now == word) {
            flag = 1;
        }

        for(int i = 0;i < 4; i ++) {
            int now_x = x + dir[i][0];
            int now_y = y + dir[i][1];

            if(now_x >= 0 && now_x < board.size()) {
                if(now_y >= 0 && now_y < board[0].size()) {
                    if(vis[now_x][now_y] == 0) {  
                        string temp = now;
                        if(board[now_x][now_y] != word[now.length()]) continue;
                        now += board[now_x][now_y];
                        dfs(board, word, now_x, now_y, now);
                        now = temp;
                    }
                }
            }
        }

        vis[x][y] = 0;
    }

    bool exist(vector<vector<char>>& board, string word) {
        for(int i = 0; i < board.size(); i ++) {
            for(int j = 0; j < board[0].size(); j ++) {
                string now = "";
                now = board[i][j];
                dfs(board, word, i, j, now);
                if(flag == 1) return true;
            }
        }

        if(flag == 1) return true;
        return false;
    }
};
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值