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

Posted Peterxiazhen

tags:

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

public class Leetcode124 {
    int res = Integer.MIN_VALUE;

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

    public int dfs(TreeNode node) {
        if (node == null) return 0;

        // 递归计算左右节点的最大贡献值,如果为父,就不计算到以当前节点为根节点的最大路径中
        int leftNodeSum = Math.max(dfs(node.left),0);
        int rightNodeSum = Math.max(dfs(node.right),0);

        //更新答案
        int temp = node.val + leftNodeSum + rightNodeSum;
        res = Math.max(res, temp);

        return node.val + Math.max(leftNodeSum, rightNodeSum);
    }
}

 

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

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

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

LeetCode第124题—二叉树中的最大路径和—Python实现

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

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

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