Binary Tree Longest Consecutive Sequence III

Note:

This question is good summary for this kind of problem. 
1) Once you get the root, loop through all the children. Get the max up/down/max from the children. 

2) set root max = up + down + 1, then comparing with the max got from the children. 

3) Return the max, current up and down. 

/**
 * Definition for a multi tree node.
 * public class MultiTreeNode {
 *     int val;
 *     List<TreeNode> children;
 *     MultiTreeNode(int x) { val = x; }
 * }
 */
public class Solution {
    /**
     * @param root the root of k-ary tree
     * @return the length of the longest consecutive sequence path
     */
    private class ResultType {
        int max;
        int up;
        int down;
        public ResultType(int max, int up, int down) {
            this.max = max;
            this.up = up;
            this.down = down;
        }
    }
    public int longestConsecutive3(MultiTreeNode root) {
        // Write your code here
        return findLongestConsecutive(root).max;    
    }
    
    private ResultType findLongestConsecutive(MultiTreeNode root) {
        if (root == null) {
            return new ResultType(0, 0, 0);
        }
        
        int up = 0, down = 0, max = 1; //at least max could be 1;
        //In the loop, we need to get the max up, down, max from root's child
        for (MultiTreeNode child : root.children) {
            ResultType childRst = findLongestConsecutive(child);
            if (child != null && child.val + 1 == root.val) {
                down = Math.max(down, childRst.down + 1);
            }
            if (child != null && child.val - 1 == root.val) {
                up = Math.max(up, childRst.up + 1);
            }
            max = Math.max(max, childRst.max); // 
        }
        max = Math.max(up + down + 1, max);
        return new ResultType(max, up, down);
    }
    
    
}

 

转载于:https://www.cnblogs.com/codingEskimo/p/6955181.html

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值