【LeetCode热题100】【回溯】单词搜索

题目链接:79. 单词搜索 - 力扣(LeetCode)

要在一个二维数组里面找到一条单词路径,可以先遍历二维数组找到单词入口,然后往上下左右深度遍历,访问过的元素直接修改成字符串结束符,访问完改回去

复制代码
class Solution {
public:
    string word;
    int row, column;
    vector<vector<char> > board;

    bool dfs(int i, int j, int count) {
        if (i >= row || j >= column || i < 0 || j < 0 || board[i][j] != word[count])
            return false;
        if (count == word.size() - 1)
            return true;
        board[i][j] = '\0';
        ++count;
        bool next = dfs(i - 1, j, count) || dfs(i, j - 1, count) || dfs(i + 1, j, count) || dfs(i, j + 1, count);
        board[i][j] = word[--count];
        return next;
    }

    bool exist(vector<vector<char> > &board, string word) {
        this->board = move(board);
        this->word = move(word);
        row = this->board.size();
        column = this->board[0].size();
        for (int i = 0; i < row; ++i)
            for (int j = 0; j < column; ++j) {
                if (dfs(i, j, 0))
                    return true;
            }
        return false;
    }
};
相关推荐
m0_3722570215 小时前
ID3 算法为什么可以用来优化决策树
算法·决策树·机器学习
q***252116 小时前
SpringMVC 请求参数接收
前端·javascript·算法
Dream it possible!16 小时前
LeetCode 面试经典 150_图_克隆图(90_133_C++_中等)(深度优先:DFS)
c++·leetcode·面试·
数模加油站16 小时前
25认证杯C题成品论文第一弹【冲奖硬核+无盲点解析】
算法·数学建模·认证杯·25认证杯
MobotStone16 小时前
数字沟通之道
人工智能·算法
点云SLAM16 小时前
Boost库中Math 模块的插值(interpolation使用和示例
算法·插值·boost库·b-spline·akima 样条·单调三次样条·barycentric 插值
鸭子程序员16 小时前
c++ 算法
开发语言·c++·算法
Ghost-Face16 小时前
《逆袭导论》————初中生的宝书
算法
不会c嘎嘎17 小时前
算法百练,直击OFFER -- day5
c++·算法
Aileen_0v017 小时前
【Gemini3.0的国内use教程】
android·人工智能·算法·开源·mariadb