Skip to content

Commit 5ced94f

Browse files
authored
Create all-paths-from-source-to-target.cpp
1 parent 51ca459 commit 5ced94f

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed
+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
// Time: O(p + r * n), p is the count of all the possible paths in graph,
2+
// r is the count of the result.
3+
// Space: O(n)
4+
5+
class Solution {
6+
public:
7+
vector<vector<int>> allPathsSourceTarget(vector<vector<int>>& graph) {
8+
vector<vector<int>> result;
9+
vector<int> path{0};
10+
dfs(graph, 0, &path, &result);
11+
return result;
12+
}
13+
14+
private:
15+
void dfs(const vector<vector<int>>& graph,
16+
int curr, vector<int> *path,
17+
vector<vector<int>> *result) {
18+
if (curr == graph.size() - 1) {
19+
result->emplace_back(*path);
20+
return;
21+
}
22+
for (const auto& node: graph[curr]) {
23+
path->emplace_back(node);
24+
dfs(graph, node, path, result);
25+
path->pop_back();
26+
}
27+
}
28+
};

0 commit comments

Comments
 (0)