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

Sum Root to Leaf Numbers

时间:2015-03-17 21:28:07      阅读:118      评论:0      收藏:0      [点我收藏+]

标签:

/**
 * Definition for binary tree
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 * };
 */
class Solution {
public:
    int sum = 0;
    void dfs(TreeNode *root,int num){
        if(!root) return ;//空数
        if(!root->left&&!root->right){//到达叶子节点
            sum+=num*10+root->val;
            return ;
        }
        dfs(root->left,num*10+root->val);//遍历左右子树
        dfs(root->right,num*10+root->val);
        return ;
    }
    int sumNumbers(TreeNode *root) {
        dfs(root,0);
        return sum;
    }
};

 

Sum Root to Leaf Numbers

标签:

原文地址:http://www.cnblogs.com/llei1573/p/4345353.html

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