[LeetCode] 1022. Sum of Root To Leaf Binary Numbers

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.

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:
Example 1
Input: root = [1,0,1,0,1,0,1]
Output: 22
Explanation: (100) + (101) + (110) + (111) = 4 + 5 + 6 + 7 = 22

Example 2:
Input: root = [0]
Output: 0

Constraints:
The number of nodes in the tree is in the range [1, 1000].
Node.val is 0 or 1.

思路

思路是前序遍历,几乎和 129 题一样。只不过这里的数字是二进制的。

复杂度

时间O(n)
空间O(n)

代码

Java实现

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
/**
* Definition for a binary tree node.
* public class TreeNode {
* int val;
* TreeNode left;
* TreeNode right;
* TreeNode() {}
* TreeNode(int val) { this.val = val; }
* TreeNode(int val, TreeNode left, TreeNode right) {
* this.val = val;
* this.left = left;
* this.right = right;
* }
* }
*/
class Solution {
int res = 0;

public int sumRootToLeaf(TreeNode root) {
if (root == null) {
return res;
}
helper(root, 0);
return res;
}

private void helper(TreeNode node, int sum) {
if (node == null) {
return;
}
sum = sum * 2 + node.val;
if (node.left == null && node.right == null) {
res += sum;
return;
}
helper(node.left, sum);
helper(node.right, sum);
}
}

相关题目

1
2
129. Sum Root to Leaf Numbers
1022. Sum of Root To Leaf Binary Numbers

[LeetCode] 1022. Sum of Root To Leaf Binary Numbers
https://shurui91.github.io/posts/3650823632.html
Author
Aaron Liu
Posted on
September 9, 2020
Licensed under