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

Posted yonezu

tags:

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

技术图片

 

 

class Solution {
    public int maxPathSum(TreeNode root) {
        dfs(root);
        return res;
    }
    int res = Integer.MIN_VALUE;
    public int dfs(TreeNode root) { // 返回以当前根节点结尾的子树最大路径和
        if(root == null) return 0;

        int left = dfs(root.left);
        int right = dfs(root.right);
        res = Math.max(res,left + right + root.val);

        return Math.max(0,root.val + Math.max(left,right)); // 小于0就去除

    }
}

 

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

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

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

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

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

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

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