码迷,mamicode.com
首页 > 其他好文 > 详细

129. 求根到叶子节点数字之和

时间:2020-04-01 23:41:51      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:style   节点   efi   bin   public   tree   tree node   ber   help   

 1 /**
 2  * Definition for a binary tree node.
 3  * struct TreeNode {
 4  *     int val;
 5  *     TreeNode *left;
 6  *     TreeNode *right;
 7  *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 8  * };
 9  */
10 class Solution 
11 {
12 public:
13     int helper(TreeNode* root, int sum)
14     {
15         if(!root) return 0;
16         if(!root->left && !root->right) return 10*sum + root->val;
17         return helper(root->left, 10*sum + root->val) + helper(root->right, 10*sum + root->val);
18     }
19     int sumNumbers(TreeNode* root) 
20     {
21         return helper(root, 0);
22     }
23 };

 

129. 求根到叶子节点数字之和

标签:style   节点   efi   bin   public   tree   tree node   ber   help   

原文地址:https://www.cnblogs.com/yuhong1103/p/12616659.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!