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

128. 最长连续序列-set/map-困难

时间:2020-09-18 01:00:20      阅读:25      评论:0      收藏:0      [点我收藏+]

标签:ret   它的   color   nbsp   描述   solution   ons   length   map   

问题描述

给定一个未排序的整数数组,找出最长连续序列的长度。

要求算法的时间复杂度为 O(n)。

示例:

输入: [100, 4, 200, 1, 3, 2]
输出: 4
解释: 最长连续序列是 [1, 2, 3, 4]。它的长度为 4。

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/longest-consecutive-sequence

解答

class Solution {
    public int longestConsecutive(int[] nums) {
        if(nums.length <= 1)return nums.length;
        //set可以去重
        Set<Integer> set = new HashSet<Integer>();
        for(int num:nums){
            set.add(num);
        }
        int longest = 0; int currentLongest = 1;
        for(int num:nums){
            currentLongest = 1;
            if(!set.contains(num-1)){
                while(set.contains(num+1)){
                    currentLongest++;
                    num++;
                }
                if(currentLongest > longest)longest = currentLongest;
            }
        }
        return longest;
    }
}

 

128. 最长连续序列-set/map-困难

标签:ret   它的   color   nbsp   描述   solution   ons   length   map   

原文地址:https://www.cnblogs.com/xxxxxiaochuan/p/13666006.html

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