首页 > 每天刷一道牛客题霸-第13天-二叉树的最大路径和
头像
菜鸟也要飞的高
编辑于 2020-12-16 20:50
+ 关注

每天刷一道牛客题霸-第13天-二叉树的最大路径和

题目

https://www.nowcoder.com/practice/da785ea0f64b442488c125b441a4ba4a?tpId=190&rp=1&ru=%2Fta%2Fjob-code-high-rd&qru=%2Fta%2Fjob-code-high-rd%2Fquestion-ranking

import java.util.*;

/*
 * public class TreeNode {
 *   int val = 0;
 *   TreeNode left = null;
 *   TreeNode right = null;
 * }
 */

public class Solution {
    /**
     * 
     * @param root TreeNode类 
     * @return int整型
     */
    public static int maxValue;

    public int maxPathSum (TreeNode root) {
        // write code here
        maxValue = Integer.MIN_VALUE;
        getMaxPathSum(root);
        return maxValue;
    }
    public int getMaxPathSum(TreeNode root){
        if(root != null){
            int maxLeftValue = Math.max(0,getMaxPathSum(root.left));
            int maxRightValue = Math.max(0,getMaxPathSum(root.right));
            maxValue = Math.max(maxValue,maxLeftValue + root.val + maxRightValue);
            return Math.max(maxLeftValue , maxRightValue)+ root.val;
        }
        return 0;
    }
}

全部评论

(2) 回帖
加载中...
话题 回帖

推荐话题

相关热帖

近期热帖

近期精华帖

热门推荐