blob: 697182d1cd2d940b24a06ca4e25a03e663591383 (
plain)
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
|
#include <cstddef>
struct TreeNode
{
int val;
TreeNode *left;
TreeNode *right;
TreeNode(int x) : val(x), left(NULL), right(NULL) {}
};
#include <vector>
class Solution
{
public:
std::vector<int> current;
int dfs(TreeNode *root, int sum)
{
if (root == nullptr)
return 0;
current.push_back(root->val);
int s = 0;
int count = 0;
for (auto iter = current.crbegin(); iter != current.crend(); ++iter)
{
s += *iter;
if (s == sum)
count++;
}
count += dfs(root->left, sum) + dfs(root->right, sum);
current.pop_back();
return count;
}
int pathSum(TreeNode *root, int sum)
{
return dfs(root, sum);
}
};
|