​LeetCode刷题实战549:二叉树中最长的连续序列

程序IT圈

共 2102字,需浏览 5分钟

 ·

2022-03-10 17:12

算法的重要性,我就不多说了吧,想去大厂,就必须要经过基础知识和业务逻辑面试+算法面试。所以,为了提高大家的算法能力,这个公众号后续每天带大家做一道算法题,题目就从LeetCode上面选 !

今天和大家聊的问题叫做 二叉树中最长的连续序列,我们先来看题面:
https://leetcode-cn.com/problems/binary-tree-longest-consecutive-sequence-ii/

Given a binary tree, you need to find the length of Longest Consecutive Path in Binary Tree.

Especially, this path can be either increasing or decreasing. For example, [1,2,3,4] and [4,3,2,1] are both considered valid, but the path [1,2,4,3] is not valid. On the other hand, the path can be in the child-Parent-child order, where not necessarily be parent-child order.



解题

https://blog.csdn.net/qq_29051413/article/details/108559688

思路:

给每一个节点搭配两个属性:inc 和 dcr 。
其中,inc 表示截至到当前节点的最长连续递增序列的长度,dcr 表示截至到当前节点的最长连续递减序列的长度。
那么,包含当前节点的连续序列路径的长度就是 inc + dec - 1。
接着找到 inc + dec - 1 值最大的节点,返回这个值即可。

class Solution {
    int maxval = 0;

    public int longestConsecutive(TreeNode root) {
        longestPath(root);
        return maxval;
    }

    public int[] longestPath(TreeNode root) {
        if (root == null) {
            return new int[]{0, 0};
        }
        int inr = 1, dcr = 1;
        if (root.left != null) {
            int[] l = longestPath(root.left);
            if (root.val == root.left.val + 1) {
                dcr = l[1] + 1;
            } else if (root.val == root.left.val - 1) {
                inr = l[0] + 1;
            }
        }
        if (root.right != null) {
            int[] r = longestPath(root.right);
            if (root.val == root.right.val + 1) {
                dcr = Math.max(dcr, r[1] + 1);
            } else if (root.val == root.right.val - 1) {
                inr = Math.max(inr, r[0] + 1);
            }
        }
        maxval = Math.max(maxval, dcr + inr - 1);
        return new int[]{inr, dcr};
    }
}


好了,今天的文章就到这里,如果觉得有所收获,请顺手点个在看或者转发吧,你们的支持是我最大的动力 。

上期推文:

LeetCode1-540题汇总,希望对你有点帮助!
LeetCode刷题实战541:反转字符串 II
LeetCode刷题实战542:01 矩阵
LeetCode刷题实战543:二叉树的直径
LeetCode刷题实战544:输出比赛匹配对
LeetCode刷题实战545:二叉树的边界
LeetCode刷题实战546:移除盒子
LeetCode刷题实战547:省份数量
LeetCode刷题实战548:将数组分割成和相等的子数组

浏览 42
点赞
评论
收藏
分享

手机扫一扫分享

举报
评论
图片
表情
推荐
点赞
评论
收藏
分享

手机扫一扫分享

举报