leetcode-124-二叉树中的最大路径和

Posted 真不知道叫啥好

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode-124-二叉树中的最大路径和相关的知识,希望对你有一定的参考价值。

 

 方法:递归 O(n) O(n)

class Solution:
    def __init__(self):
        self.maxSum = float("-inf")

    def maxPathSum(self, root: TreeNode) -> int:
        def maxGain(node):
            if not node:
                return 0

            # 递归计算左右子节点的最大贡献值
            # 只有在最大贡献值大于 0 时,才会选取对应子节点
            leftGain = max(maxGain(node.left), 0)
            rightGain = max(maxGain(node.right), 0)
            
            # 节点的最大路径和取决于该节点的值与该节点的左右子节点的最大贡献值
            priceNewpath = node.val + leftGain + rightGain
            
            # 更新答案
            self.maxSum = max(self.maxSum, priceNewpath)
        
            # 返回节点的最大贡献值
            return node.val + max(leftGain, rightGain)
   
        maxGain(root)
        return self.maxSum

 

以上是关于leetcode-124-二叉树中的最大路径和的主要内容,如果未能解决你的问题,请参考以下文章

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

LeetCode124二叉树中的最大路径和

LeetCode(124):二叉树中的最大路径和

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

图解leetcode —— 124. 二叉树中的最大路径和

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