剑指offer搜索和回溯12. 矩阵中的路径
Posted trevo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了剑指offer搜索和回溯12. 矩阵中的路径相关的知识,希望对你有一定的参考价值。
题目链接:https://leetcode-cn.com/problems/ju-zhen-zhong-de-lu-jing-lcof/
dfs
class Solution {
public:
bool exist(vector<vector<char>>& board, string word) {
for(int i = 0; i < board.size(); i++)
for(int j = 0; j < board[i].size(); j++)
{
if(dfs(board, word, 0, i, j))
return true;
}
return false;
}
bool dfs(vector<vector<char>> &board, string &word, int u, int x, int y) {
if(board[x][y] != word[u]) return false;
if(u == word.size() - 1) return true;
int dx[4] = {-1, 0, 1, 0}, dy[4] = {0, 1, 0, -1};
char t = board[x][y];
board[x][y] = ‘*‘;
for(int i = 0; i < 4; i++)
{
int a = x + dx[i], b = y + dy[i];
if(a >= 0 && a < board.size() && b >= 0 && b < board[a].size()){
if(dfs(board, word, u + 1, a, b)) return true;
}
}
board[x][y] = t;
return false;
}
};
以上是关于剑指offer搜索和回溯12. 矩阵中的路径的主要内容,如果未能解决你的问题,请参考以下文章