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

[LeetCode] Binary Tree Maximum Path Sum(递归)

时间:2014-07-30 20:33:34      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   for   art   ar   div   

Given a binary tree, find the maximum path sum.

The path may start and end at any node in the tree.

For example: Given the below binary tree,

       1
      /      2   3

 

Return 6.

/**
 * Definition for binary tree
 * 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==NULL)
            return 0;
        set<int> s;
        return recursion(root,root,s);
    }
private:
    int recursion(TreeNode *p,TreeNode *root,set<int> &s){
        
        int left = 0 ,right=0 ,parent = p->val;
        int max = p->val;
        if(p->left==NULL && p->right==NULL)
            return max;
        if(p->left)
            left = recursion(p->left,root,s);
        if(p->right)
            right = recursion(p->right,root,s);

        if(left>max && p->left)
            s.insert(left);
        if(right>max && p->right)
            s.insert(right);
        if(left+parent>max)
            max = left+parent;
        if(right+parent>max)
            max = right+parent;
        if(right+left+parent>max)
            s.insert(right+left+parent);

        if(p==root && !s.empty()){
            set<int>::iterator iter = s.end();
            iter--;
            return  (max>(*iter)?max:(*iter));
        }
        return max;
    }
};

 

[LeetCode] Binary Tree Maximum Path Sum(递归),布布扣,bubuko.com

[LeetCode] Binary Tree Maximum Path Sum(递归)

标签:style   blog   color   io   for   art   ar   div   

原文地址:http://www.cnblogs.com/Xylophone/p/3878711.html

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