124. binary-tree-maximum-path-sum, golang

这篇博客探讨了一种解决二叉树最大路径和问题的高效算法,通过递归和动态规划,找出任意路径中节点值之和的最大值。它介绍了如何在`maxPathSum`函数中使用`getSum`辅助函数,并展示了如何在树结构中找到最优路径。适合深入理解动态规划在树形结构中的应用。
摘要由CSDN通过智能技术生成

description:

124. Binary Tree Maximum Path Sum
Hard

7460

460

Add to List

Share
A path in a binary tree is a sequence of nodes where each pair of adjacent nodes in the sequence has an edge connecting them. A node can only appear in the sequence at most once. Note that the path does not need to pass through the root.

The path sum of a path is the sum of the node's values in the path.

Given the root of a binary tree, return the maximum path sum of any path.

 

Example 1:


Input: root = [1,2,3]
Output: 6
Explanation: The optimal path is 2 -> 1 -> 3 with a path sum of 2 + 1 + 3 = 6.
Example 2:


Input: root = [-10,9,20,null,null,15,7]
Output: 42
Explanation: The optimal path is 15 -> 20 -> 7 with a path sum of 15 + 20 + 7 = 42.
 

Constraints:

The number of nodes in the tree is in the range [1, 3 * 104].
-1000 <= Node.val <= 1000
Accepted
607,540
Submissions
1,652,069

code:

/**
 * Definition for a binary tree node.
 * type TreeNode struct {
 *     Val int
 *     Left *TreeNode
 *     Right *TreeNode
 * }
 */
func maxPathSum(root *TreeNode) int {
    
    var res = -1 << 63
    getSum(root, &res)
    return res
}

func getSum(root *TreeNode, res *int) (sum int) {
    
    if root == nil {
        return
    }
    
    var left = max(getSum(root.Left, res), 0)
    var right = max(getSum(root.Right, res), 0)
    if sum = root.Val + left + right; sum > *res {
        *res = sum
    }
    sum = root.Val+ max(left, right)
    return
}

func max(a, b int) int {
    if a > b {
        return a
    }
    return b
}

result:
在这里插入图片描述
personal opinion:

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值