1161.Maximum Level Sum of a Binary Tree
Problem description:
Given the root
of a binary tree, the level of its root is 1
, the level of its children is 2
, and so on.
Return the smallest level x
such that the sum of all the values of nodes at level x
is maximal.
Example 1:
1 | Input: root = [1,7,0,7,-8,null,null] |
Example 2:
1 | Input: root = [989,null,10250,98693,-89388,null,null,null,-32127] |
Constraints:
- The number of nodes in the tree is in the range
[1, 104]
. 105 <= Node.val <= 105
Solution:
1 | # Definition for a binary tree node. |
time complexity: $O()$
space complexity: $O()$
reference:
related problem: