LeetCode: Sum Root to Leaf Numbers

Source: Internet
Author: User

Given a binary tree containing digits from0-9Only, each root-to-leaf path


Cocould represent a number.


An example is the root-to-leaf path1->2->3Which represents the number123.


Find the total sum of all root-to-leaf numbers.


For example,

    1   / \  2   3 

The root-to-leaf path1->2Represents the number12.


The root-to-leaf path1->3Represents the number13.


Return the sum = 12 + 13 =25.


Solution:

Traverse the binary tree to know the number of root-to-leaf nodes. Because the data is weak, the number on the path is used


Int can be saved. For example, if the depth of a fruit tree is greater than 10, int will overflow. Therefore, it is better to use a string,


Then simulate the addition operation.


Solution code:

/** * Definition for binary tree * struct TreeNode { *     int val; *     TreeNode *left; *     TreeNode *right; *     TreeNode(int x) : val(x), left(NULL), right(NULL) {} * }; */class Solution {public:    void dfs(TreeNode *rt,int path,int &sum)    {        if (!rt) return ;        path = path * 10 + rt->val ;        if (rt->left == rt->right && !rt->left)            sum +=path;        dfs(rt->left,path,sum);        dfs(rt->right,path,sum);    }    int sumNumbers(TreeNode *root)     {        int ans = 0 ;        dfs(root,0,ans);        return ans ;    }};


Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.