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

Posted yuhong1103

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了129. 求根到叶子节点数字之和相关的知识,希望对你有一定的参考价值。

 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. 求根到叶子节点数字之和的主要内容,如果未能解决你的问题,请参考以下文章

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

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

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

LeetCode 129. 求根到叶子节点数字之和(Sum Root to Leaf Numbers)

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

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