码迷,mamicode.com
首页 > 其他好文 > 详细

Hard | LeetCOde 124. 二叉树中的最大路径和

时间:2021-01-19 12:04:37      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:提示   target   一个   lang   targe   binary   ret   max   定义   

124. 二叉树中的最大路径和

路径 被定义为一条从树中任意节点出发,沿父节点-子节点连接,达到任意节点的序列。该路径 至少包含一个 节点,且不一定经过根节点。

路径和 是路径中各节点值的总和。

给你一个二叉树的根节点 root ,返回其 最大路径和

示例 1:

技术图片
输入:root = [1,2,3]
输出:6
解释:最优路径是 2 -> 1 -> 3 ,路径和为 2 + 1 + 3 = 6

示例 2:

技术图片
输入:root = [-10,9,20,null,null,15,7]
输出:42
解释:最优路径是 15 -> 20 -> 7 ,路径和为 15 + 20 + 7 = 42

提示:

  • 树中节点数目范围是 [1, 3 * 104]
  • -1000 <= Node.val <= 1000

解题思路

此题和 Easy | LeetCode 543. 二叉树的直径 类型。不过那道题是只要直径, 而本题是要取其值。思路都是一致的, 都是左子树的和 + 右子树的和。

class Solution {

    private int res = Integer.MIN_VALUE;

    public int maxPathSum(TreeNode root) {
        getRootSum(root);
        return res;
    }

    public int getRootSum(TreeNode root) {
        if (root == null) {
            return 0;
        }
        int leftValue = getRootSum(root.left);
        int rightValue = getRootSum(root.right);
        res = Math.max(res, (Math.max(0, leftValue) + Math.max(0, rightValue) + root.val));
        return root.val + Math.max(Math.max(0, leftValue), Math.max(0, rightValue));
    }
}

Hard | LeetCOde 124. 二叉树中的最大路径和

标签:提示   target   一个   lang   targe   binary   ret   max   定义   

原文地址:https://www.cnblogs.com/chenrj97/p/14293307.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!