[LeetCode] Sum Root to Leaf Numbers

来源:互联网 发布:西安程序员好找工作吗 编辑:程序博客网 时间:2024/06/01 22:12

Given a binary tree containing digits from 0-9 only, each root-to-leaf path could represent a number.

An example is the root-to-leaf path 1->2->3 which represents the number 123.

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

For example,

    1   / \  2   3

 The root-to-leaf path 1->2 represents the number 12.
 The root-to-leaf path 1->3 represents the number 13.

Return the sum = 12 + 13 = 25.

/** * Definition for binary tree * public class TreeNode { *     int val; *     TreeNode left; *     TreeNode right; *     TreeNode(int x) { val = x; } * } */public class Solution {    public int sumNumbers(TreeNode root) {        int[] sum = {0};        getSum(root, 0, sum);        return sum[0];    }        public void getSum(TreeNode root, int sumFather, int[] sum) {        if (root == null) return;        int sumTemp = sumFather*10 + root.val;        if (root.left == null && root.right == null) {            sum[0] = sum[0] + sumTemp;            return;        }                getSum(root.left, sumTemp, sum);        getSum(root.right, sumTemp, sum);    }}




 

0 0