经典算法题: 二叉树中的最大路径和

一、题目

给定一个非空二叉树,返回其最大路径和。

本题中,路径被定义为一条从树中任意节点出发,达到任意节点的序列。该路径至少包含一个节点,且不一定经过根节点。

示例 1:

输入: [1,2,3]

       1
      / \
     2   3

输出: 6
示例 2:

输入: [-10,9,20,null,null,15,7]

   -10
   / \
  9  20
    /  \
   15   7

输出: 42

二、思路

对于任意一个节点, 如果最大和路径包含该节点, 那么只可能是两种情况:

1)左右子树中所构成的和路径值较大的那个加上该节点的值后向父节点回溯构成最大路径

2)左右子树都在最大路径中,加上该节点的值构成了最终的最大路径

三、实现

class Solution {

    private int res = Integer.MIN_VALUE;

    public int maxPathSum(TreeNode root) {

        getMax(root);

        return res;

    }

    private int getMax(TreeNode root) {

        if (root == null) {

            return 0;

        }

        int left = Math.max(0, getMax(root.left));

        int right = Math.max(0, getMax(root.right));

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

        return Math.max(left, right) + root.val;

    }

}

发布了83 篇原创文章 · 获赞 0 · 访问量 4504

猜你喜欢

转载自blog.csdn.net/zhangdx001/article/details/105510709
今日推荐