最长连续序列(排序)

 

给定一个未排序的整数数组 nums ,找出数字连续的最长序列(不要求序列元素在原数组中连续)的长度。

请你设计并实现时间复杂度为 O(n) 的算法解决此问题。

 

示例 1:

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

示例 2:

输入:nums = [0,3,7,2,5,8,4,6,0,1]
输出:9

思路:先排序,再遍历,边遍历边更新maxLen

class Solution {
public:
    int longestConsecutive(vector<int>& nums) {
        int n = nums.size(); 
        if(n==0||n==1) return n;
        sort(nums.begin(),nums.end());
        int res=0;
        int maxLen = 1;
        for(int i=1;i<n;i++){
            if(nums[i]==nums[i-1]+1){
                maxLen++;
            }else if(nums[i]==nums[i-1]){
                continue;
            }else{
                res = max(res,maxLen);
                maxLen = 1;
            }
        }
        return max(res,maxLen);
    }
};

 

posted on 2024-12-17 16:16  _月生  阅读(20)  评论(0)    收藏  举报