Skip to content

Latest commit

 

History

History
60 lines (41 loc) · 896 Bytes

[0128] 最长连续序列.md

File metadata and controls

60 lines (41 loc) · 896 Bytes
title tags categories author comments updated permalink mathjax top description date
[0128] 最长连续序列
leetcode
leetcode
张学志
true
false
false
false
...
2019-12-31 16:02:08 -0800

题目描述

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

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

示例:

输入: [100, 4, 200, 1, 3, 2]
输出: 4
解释: 最长连续序列是 [1, 2, 3, 4]。它的长度为 4。
Related Topics
  • 并查集
  • 数组
  • 题目代码

    class Solution {
    public:
        int longestConsecutive(vector<int>& nums) {
    
        }
    };

    题目解析

    方法一

    方法二

    方法三