码迷,mamicode.com
首页 > 其他好文 > 详细

Leetcode 124

时间:2017-01-24 20:13:17      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:https   turn   problems   tree   get   二叉树   targe   blog   problem   

  原题链接

题目大意:

一棵节点带有点权的二叉树中,寻找最大节点和,感觉和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

标签:https   turn   problems   tree   get   二叉树   targe   blog   problem   

原文地址:http://www.cnblogs.com/freinds/p/6347702.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!