-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy path129.sum-root-to-leaf-numbers.cpp
55 lines (51 loc) · 1.4 KB
/
129.sum-root-to-leaf-numbers.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
/**
* Definition for a binary tree node.
* 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:
bool isLeaf(TreeNode* node) {
return (node->left == nullptr && node->right == nullptr);
}
vector<vector<int>> paths;
void RR(TreeNode* node, vector<int> &path)
{
// base case
if (node == nullptr) {
return;
}
path.push_back(node->val);
if (isLeaf(node))
{
paths.push_back(path);
}
// recur for the left and right subtree
RR(node->left, path);
RR(node->right, path);
// backtrack: remove the current node after the left, and right subtree are done
path.pop_back();
}
int sumNumbers(TreeNode* root) {
vector<int> path;
int ans = 0;
RR(root,path);
for(int i=0;i<paths.size();i++){
int p = pow(10,paths[i].size()-1);
int sum = 0;
for(int j=0;j<paths[i].size();j++){
int cur = paths[i][j];
sum += cur*p;
p /=10;
}
ans+=sum;
}
return ans;
}
};