首页 > 其他 > 详细

128 最长连续序列

时间:2020-08-26 22:02:14      阅读:115      评论:0      收藏:0      [点我收藏+]

思路:找序列中最小的那个数字,然后递增检查。

import java.util.HashSet;
import java.util.Set;

class Solution {
    public int longestConsecutive(int[] nums) {
        Set<Integer> set = new HashSet<>();
        for(int a : nums){
            set.add(a);
        }
        
        int maxLen = 0;
        for(int a : set){
            if (!set.contains(a - 1)) {
                int cur = 1;
                a++;
                while(set.contains(a)){
                    cur++;
                    a++;
                }
                maxLen = Math.max(maxLen, cur);
            }
        }
        
        return maxLen;
    }
}

128 最长连续序列

原文:https://www.cnblogs.com/realzhaijiayu/p/13567955.html

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