前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >LeetCode 124 Binary Tree Maximum Path Sum

LeetCode 124 Binary Tree Maximum Path Sum

作者头像
ShenduCC
发布2018-07-24 16:08:14
2520
发布2018-07-24 16:08:14
举报
文章被收录于专栏:算法修养算法修养

题目链接:

https://leetcode.com/problems/binary-tree-maximum-path-sum/description/

Given a non-empty binary tree, find the maximum path sum.

For this problem, a path is defined as any sequence of nodes from some starting node to any node in the tree along the parent-child connections. The path must contain at least one node and does not need to go through the root.


dfs 深度遍历

遍历的时候,记录根节点到左子树和右子树中的某个点的最大距离,再比较下即可

代码语言:javascript
复制
class Solution {
public:
    int ans = -99999999;
    int maxPathSum(TreeNode* root) {
      
        dfs(root);
        return ans;
    }
    
    int dfs(TreeNode* root)
    {
        if(root->left==NULL&&root->right==NULL)
        {  ans=max(ans,root->val);return root->val;}
        if(root->left!=NULL&&root->right==NULL)
        {
            int xleft = dfs(root->left);
            ans = max(ans,max(root->val+xleft,root->val));
            return max(root->val+xleft,root->val);
        }
        if(root->left==NULL&&root->right!=NULL)
        {
            int xright = dfs(root->right);
            ans = max(ans,max(root->val,root->val+xright));
            return max(root->val,root->val+xright);
        }
        if(root->left!=NULL&&root->right!=NULL)
        {
            int xleft = dfs(root->left);
            int xright = dfs(root->right);
            ans = max(ans,max(root->val,max(root->val+xleft,max(root->val+xleft+xright,root->val+xright))));
            return max(root->val,max(root->val+xleft,root->val+xright));
        }
    }
    
    
};
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2018-07-21 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档