首页 > 其他 > 详细

leetcode 687.Longest Univalue Path

时间:2018-09-12 00:25:50      阅读:164      评论:0      收藏:0      [点我收藏+]

寻找最长的路径,那么会在左边或者右边或者是从左到跟然后再到右方的路径的。

/**
 * 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 longestUnivaluePath(TreeNode* root) {
        if(!root) return 0;
        int res=max(longestUnivaluePath(root->left), longestUnivaluePath(root->right));
        return max(res, helper(root->left, root->val)+helper(root->right, root->val));
    }
    int helper(TreeNode* root, int parent){
        if(!root || root->val!=parent) return 0;
        return 1+max(helper(root->left, parent), helper(root->right, parent));
    }
};

 

leetcode 687.Longest Univalue Path

原文:https://www.cnblogs.com/newnoobbird/p/9631766.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!