-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathPath Sum II.cpp
More file actions
49 lines (44 loc) · 1.04 KB
/
Path Sum II.cpp
File metadata and controls
49 lines (44 loc) · 1.04 KB
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
/**
* Definition for binary tree
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
class Solution
{
public:
vector<vector<int> > pathSum(TreeNode* root, int sum)
{
vector<vector<int>> result;
if (root != NULL)
{
vector<int> path;
walk(root, sum, path, result);
}
return result;
}
void walk(TreeNode* root, int sum, vector<int>& path, vector<vector<int>>& result)
{
sum -= root->val;
path.push_back(root->val);
if (root->left == NULL && root->right == NULL)
{
if (sum == 0)
{
result.push_back(path);
}
}
if (root->left != NULL)
{
walk(root->left, sum, path, result);
}
if (root->right != NULL)
{
walk(root->right, sum, path, result);
}
path.pop_back();
}
};