LeetCode --- 1022. Sum of Root To Leaf Binary Numbers 解题思路

Posted 杨鑫newlfe

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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:

Input: root = [1,0,1,0,1,0,1]
Output: 22
Explanation: (100) + (101) + (110) + (111) = 4 + 5 + 6 &#

以上是关于LeetCode --- 1022. Sum of Root To Leaf Binary Numbers 解题思路的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode --- 1022. Sum of Root To Leaf Binary Numbers 解题思路

#Leetcode# 404. Sum of Left Leaves

LeetCode Sum of Square Numbers

Leetcode 404. Sum of Left Leaves

LeetCode 813. Largest Sum of Averages

LeetCode 404. Sum of Left Leaves