Leetcode 124

Posted despair_ghost

tags:

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

  原题链接

题目大意:

一棵节点带有点权的二叉树中,寻找最大节点和,感觉和XDU一题《ORZ系数之和》(用并查集实现)很像

/**
 * Definition for a binary tree node.
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 * };
 */
class Solution {
public:
    int maxPathSum(TreeNode* root){
        if(!root) return 0;
        int now=root->val;
        dfs(root,now);
        return now;
    }
    int dfs(TreeNode* root,int &now){
        if(!root) return 0;
        int res=root->val;
        int left=dfs(root->left,now);
        int right=dfs(root->right,now);
        if(left>0) res+=left;
        if(right>0) res+=right;
        if(res>now) now=res;
        return root->val+max(max(left,right),0);
    }
};

 

以上是关于Leetcode 124的主要内容,如果未能解决你的问题,请参考以下文章

第四周 Leetcode 124. Binary Tree Maximum Path Sum (HARD)

leetcode-124. Binary Tree Maximum Path Sum

Leetcode 124

Leetcode 124*

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

LeetCode 124. Binary Tree Maximum Path Sum