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

leetcode 687.Longest Univalue Path

时间:2018-09-12 01:06:41      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:def   val   div   turn   tree   class   long   nod   color   

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

/**
 * 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

标签:def   val   div   turn   tree   class   long   nod   color   

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

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