-
Notifications
You must be signed in to change notification settings - Fork 135
/
Copy pathleetcode113-path-sum-ii_dfs1.cpp
74 lines (70 loc) · 1.96 KB
/
leetcode113-path-sum-ii_dfs1.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#include <algorithm>
#include <vector>
#include <iostream>
using namespace std;
/**
* Definition for a binary tree root->
*/
struct TreeNode
{
int val;
TreeNode* left;
TreeNode* right;
TreeNode() : val(0), left(nullptr), right(nullptr) {}
TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
TreeNode(int x, TreeNode* left, TreeNode* right) : val(x), left(left), right(right) {}
};
class Solution {
public:
vector<vector<int>> pathSum(TreeNode* root, int targetSum) {
vector<vector<int>> paths;
vector<int> curPath;
dfs(root, targetSum, paths, curPath);
return paths;
}
/* 类似于two sum的做法, 下次调用dfs时传入dfs的新sum为sum - root->val */
void dfs(TreeNode* root, int sum, vector<vector<int>>& paths, vector<int> curPath)
{
if (root == nullptr) return;
curPath.push_back(root->val);
if (root->val == sum && root->left == nullptr && root->right == nullptr)
paths.push_back(curPath);
else
{
dfs(root->left, sum - root->val, paths, curPath);
dfs(root->right, sum - root->val, paths, curPath);
}
curPath.pop_back();
}
};
// Test
int main()
{
Solution sol;
TreeNode* root = new TreeNode(3);
TreeNode* n1 = new TreeNode(5);
TreeNode* n2 = new TreeNode(1);
TreeNode* n3 = new TreeNode(6);
TreeNode* n4 = new TreeNode(2);
TreeNode* n5 = new TreeNode(0);
TreeNode* n6 = new TreeNode(8);
TreeNode* n7 = new TreeNode(7);
TreeNode* n8 = new TreeNode(4);
root->left = n1;
root->right = n2;
n1->left = n3;
n1->right = n4;
n2->left = n5;
n2->right = n6;
n4->left = n7;
n4->right = n8;
int targetSum = 14;
auto res = sol.pathSum(root, targetSum);
for (auto& row : res) // 遍历每一行
{
for (auto& elem : row) // 输出每一个元素
cout << elem << " ";
cout << "\n";
}
return 0;
}