[LeetCode] 128. Longest Consecutive Sequence

传送门

Description

Given an unsorted array of integers, find the length of the longest consecutive elements sequence.

For example,
Given [100, 4, 200, 1, 3, 2],
The longest consecutive elements sequence is [1, 2, 3, 4]. Return its length: 4.

Your algorithm should run in O(n) complexity.

思路

题意:给定一个未排序的数组,问最长的连续的数值有多少个。

题解:unordered_set内部用hash实现,均摊复杂度为O(1),那么我们可以遍历数组中的这些数,将其向左向右延伸,并且在延伸查找的同时进行删除,减少重复遍历的次数。

 
 
class Solution {
public:
    //13ms
    int longestConsecutive(vector<int>& nums) {
        unordered_set<int>s(nums.begin(),nums.end());
        int res = 0;
        for (auto val : nums){
            if (!s.count(val))  continue;
            int pre = --val,next = ++val;
            while (s.count(pre))    s.erase(pre--);
            while (s.count(next))   s.erase(next++);
            res = max(res,next - pre - 1);
        }
        return res;
    }
};
posted @   zxzhang  阅读(287)  评论(0编辑  收藏  举报
编辑推荐:
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· 开发者必知的日志记录最佳实践
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
阅读排行:
· 震惊!C++程序真的从main开始吗?99%的程序员都答错了
· 别再用vector<bool>了!Google高级工程师:这可能是STL最大的设计失误
· 单元测试从入门到精通
· 【硬核科普】Trae如何「偷看」你的代码?零基础破解AI编程运行原理
· 上周热点回顾(3.3-3.9)
历史上的今天:
2016-08-13 详解位元算
点击右上角即可分享
微信分享提示

目录导航