Leetcode 124*

Posted 村雨sup

tags:

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

/**
 * 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) {
        int res = INT_MIN;
        DFS(root,res);
        return res;
    }
    int DFS(TreeNode* root,int &res){
        if(!root) return 0;
        int left = max(DFS(root->left,res),0);
        int right = max(DFS(root->right,res),0);
        res = max(res,left+right+root->val);
        return max(left,right)+root->val; //res是整个树的最大值,return 的是作为单节点的最大值,不矛盾
    }
};

_

以上是关于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