LeetCode 797 所有可能的路径[DFS 回溯] HERODING的LeetCode之路
Posted HERODING23
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 797 所有可能的路径[DFS 回溯] HERODING的LeetCode之路相关的知识,希望对你有一定的参考价值。
解题思路:
n的范围不超过15,这给深度优先与回溯创造了很好的条件,直接往每个下一个节点深搜,一直找到最后一个节点为止,如果到头了还没到终点,它会直接退出(没有节点能够深搜了),全部过程都是回溯的标准模板,代码如下:
class Solution {
private:
vector<vector<int>> ans;
vector<int> res;
int n;
public:
vector<vector<int>> allPathsSourceTarget(vector<vector<int>>& graph) {
n = graph.size() - 1;
res.push_back(0);
dfs(graph, 0);
return ans;
}
void dfs(vector<vector<int>>& graph, int index) {
// 到达目的地
if(index == n) {
ans.push_back(res);
return;
}
// 遍历后面节点
for(auto next : graph[index]) {
res.push_back(next);
dfs(graph, next);
// 回溯
res.pop_back();
}
}
};
/*作者:heroding
链接:https://leetcode-cn.com/problems/all-paths-from-source-to-target/solution/chui-su-by-heroding-39gz/
来源:力扣(LeetCode)
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。*/
以上是关于LeetCode 797 所有可能的路径[DFS 回溯] HERODING的LeetCode之路的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode Algorithm 797. 所有可能的路径
LeetCode Algorithm 797. 所有可能的路径
[Mdfs] lc797. 所有可能的路径(图遍历+dfs易错点+知识理解)