Post

1079 Sum Of Root To Leaf Binary Numbers

1079 Sum Of Root To Leaf Binary Numbers

Sum of Root To Leaf Binary Numbers image

You are given the root of a binary tree where each node has a value 0 or 1. Each root-to-leaf path represents a binary number starting with the most significant bit.

1
For example, if the path is 0 -> 1 -> 1 -> 0 -> 1, then this could represent 01101 in binary, which is 13.

For all leaves in the tree, consider the numbers represented by the path from the root to that leaf. Return the sum of these numbers.

The test cases are generated so that the answer fits in a 32-bits integer.

 

Example 1:

image

1
2
3
4
5
**Input:** root = [1,0,1,0,1,0,1]
**Output:** 22
**Explanation: **(100) + (101) + (110) + (111) = 4 + 5 + 6 + 7 = 22

Example 2:

1
2
3
4
**Input:** root = [0]
**Output:** 0

 

Constraints:

1
2
The number of nodes in the tree is in the range [1, 1000].
Node.val is 0 or 1.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     public int val;
 *     public TreeNode left;
 *     public TreeNode right;
 *     public TreeNode(int val=0, TreeNode left=null, TreeNode right=null) {
 *         this.val = val;
 *         this.left = left;
 *         this.right = right;
 *     }
 * }
 */
public class Solution {
    int sum = 0 ;
    public int SumRootToLeaf(TreeNode root) {
        string s = "";
        Calc(root ,s);
        return sum ;
    }
    
    public void Calc(TreeNode root , string s)
    {       
        if(root == null)
        {
            return ;
        }
        if( root.left == null && root.right == null)
        {
            
            Console.WriteLine(s);
            sum = sum + Convert.ToInt32(s + root.val , 2);
            return ;
        }
        Calc(root.left , s + root.val);
        
        Calc(root.right , s + root.val);
    }
}



This post is licensed under CC BY 4.0 by the author.