LeetCode #1161 Maximum Level Sum of a Binary Tree 最大层内元素和

1161 Maximum Level Sum of a Binary Tree 最大层内元素和

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:

Example 1:

[图片上传失败...(image-de28a8-1656336856922)]

Input: root = [1,7,0,7,-8,null,null]
Output: 2
Explanation:
Level 1 sum = 1.
Level 2 sum = 7 + 0 = 7.
Level 3 sum = 7 + -8 = -1.
So we return the level with the maximum sum which is level 2.

Example 2:

Input: root = [989,null,10250,98693,-89388,null,null,null,-32127]
Output: 2

Constraints:

The number of nodes in the tree is in the range [1, 10^4].
-10^5 <= Node.val <= 10^5

题目描述:
给你一个二叉树的根节点 root。设根节点位于二叉树的第 1 层,而根节点的子节点位于第 2 层,依此类推。

请返回层内元素之和 最大 的那几层(可能只有一层)的层号,并返回其中 最小 的那个。

示例 :

示例 1:

[图片上传失败...(image-427b2d-1656336856922)]

输入:root = [1,7,0,7,-8,null,null]
输出:2
解释:
第 1 层各元素之和为 1,
第 2 层各元素之和为 7 + 0 = 7,
第 3 层各元素之和为 7 + -8 = -1,
所以我们返回第 2 层的层号,它的层内元素之和最大。

示例 2:

输入:root = [989,null,10250,98693,-89388,null,null,null,-32127]
输出:2

提示:

树中的节点数在 [1, 10^4]范围内
-10^5 <= Node.val <= 10^5

思路:

层序遍历
可以用迭代或者递归
记录每一层的和及对应层数输出最大的和的层的编号
时间复杂度为 O(n), 空间复杂度为 O(n)

代码:
C++:

/**
 * Definition for a binary tree node.
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode() : val(0), left(nullptr), right(nullptr) {}
 *     TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
 *     TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
 * };
 */
class Solution 
{
public:
    int maxLevelSum(TreeNode* root) 
    {
        queue<TreeNode*> q;
        if (root) q.push(root);
        int result = 0, max_value = INT_MIN, level = 0;
        while (!q.empty()) 
        {
            int size = q.size(), cur = 0;
            for (int i = 0; i < size; i++) 
            {
                TreeNode* child = q.front();
                q.pop();
                cur += child -> val;
                if (child -> left) q.push(child -> left);
                if (child -> right) q.push(child -> right);
            }
            ++level;
            if (cur > max_value) 
            {
                max_value = cur;
                result = level;
            }
        }
        return result;
    }
};

Java:

/**
 * 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 {
    public int maxLevelSum(TreeNode root) {
        Queue<TreeNode> queue = new LinkedList<>();
        if (root != null) queue.offer(root);
        int result = 0, maxValue = Integer.MIN_VALUE, level = 0;
        while (!queue.isEmpty()) {
            int size = queue.size(), cur = 0;
            for (int i = 0; i < size; i++) {
                TreeNode child = queue.poll();
                cur += child.val;
                if (child.left != null) queue.offer(child.left);
                if (child.right != null) queue.offer(child.right);
            }
            ++level;
            if (cur > maxValue) {
                maxValue = cur;
                result = level;
            }
        }
        return result;
    }
}

Python:

# Definition for a binary tree node.
# class TreeNode:
#     def __init__(self, val=0, left=None, right=None):
#         self.val = val
#         self.left = left
#         self.right = right
class Solution:
    def maxLevelSum(self, root: Optional[TreeNode]) -> int:
        s = []
        def dfs(cur: Optional[TreeNode], level: int) -> None:
            if not cur:
                return
            if level + 1 > len(s):
                s.append(0)
            s[level] += cur.val
            dfs(cur.left, level + 1)
            dfs(cur.right, level + 1)
        
        dfs(root, 0)
        return s.index(max(s)) + 1



作者:air_melt
链接:https://www.jianshu.com/p/af94b544205a
来源:简书
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

  • 2
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值