-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProblem_0113_pathSum.cc
56 lines (52 loc) · 1.18 KB
/
Problem_0113_pathSum.cc
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
#include <vector>
using namespace std;
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>> ans;
if (root != nullptr)
{
vector<int> path;
f(root, targetSum, 0, path, ans);
}
return ans;
}
void f(TreeNode* cur, int aim, int sum, vector<int>& path, vector<vector<int>>& ans)
{
if (cur->left == nullptr && cur->right == nullptr)
{
// 是叶子节点
if (cur->val + sum == aim)
{
path.push_back(cur->val);
ans.push_back(path);
path.pop_back(); // backtrace
}
}
else
{
// 不是叶子节点
path.push_back(cur->val);
if (cur->left != nullptr)
{
f(cur->left, aim, sum + cur->val, path, ans);
}
if (cur->right != nullptr)
{
f(cur->right, aim, sum + cur->val, path, ans);
}
path.pop_back();
}
}
};