128.最长连续序列
标签: array
, hash-table
, union-find
难度: Medium
通过率: 47.68%
原题链接: https://leetcode.com/problems/longest-consecutive-sequence/description/
题目描述
给定一个未排序的整数数组 nums
,找出数字连续出现的最长序列的长度。要求算法的时间复杂度为 。
标签: array
, hash-table
, union-find
难度: Medium
通过率: 47.68%
原题链接: https://leetcode.com/problems/longest-consecutive-sequence/description/
给定一个未排序的整数数组 nums
,找出数字连续出现的最长序列的长度。要求算法的时间复杂度为 。