Skip to content

Commit d8b211e

Browse files
committed
1022
1 parent 126a6f0 commit d8b211e

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

1022.cpp

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
class Solution {
2+
public:
3+
int sumtotal(TreeNode * root,int value)
4+
{
5+
if(root==NULL)
6+
{
7+
return 0;
8+
}
9+
value=(value*2)+ (root->val);
10+
11+
if(root->left==NULL && root->right==NULL)
12+
{
13+
return value;
14+
}
15+
return sumtotal(root->left,value) + sumtotal(root->right,value);
16+
}
17+
18+
int sumRootToLeaf(TreeNode* root) {
19+
int val=0;
20+
return sumtotal(root,val);
21+
}
22+
};

0 commit comments

Comments
 (0)