Longest Univalue Path【数的最长路径】

PROBLEM:

Given a binary tree, find the length of the longest path where each node in the path has the same value. This path may or may not pass through the root.

Note: The length of path between two nodes is represented by the number of edges between them.

Example 1:

Input:

              5
             / \
            4   5
           / \   \
          1   1   5

Output:

2

Example 2:

Input:

              1
             / \
            4   5
           / \   \
          4   4   5

Output:

2

Note: The given binary tree has not more than 10000 nodes. The height of the tree is not more than 1000.

SOLVE:

class Solution {
public:
    int longestUnivaluePath(TreeNode* root) {
        int lup = 0;
        if (root) dfs(root, lup);
        return lup;
    }
private:
    int dfs(TreeNode* node, int& lup) {
        //lup:以node为根节点的树中最长路径
        int l = node->left ? dfs(node->left, lup) : 0;    //l:左子树从根节点开始的最长路径 //注意:不一定是左子树的最长路径 //lup:更新为左子树的最长路径
        int r = node->right ? dfs(node->right, lup) : 0;    //r:右子树从根节点开始的最长路径 //注意:不一定是右子树的最长路径 //lup:更新为左子树及右子树中的最长路径
        int resl = node->left && node->left->val == node->val ? l + 1 : 0;
        int resr = node->right && node->right->val == node->val ? r + 1 : 0;
        lup = max(lup, resl + resr);    //lup:更新后为以node为根节点的树中最长路径 //注意:路径是边数,而不是节点数
        return max(resl, resr);    //从根节点开始的最长路径
    }
};

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值