leetcode——最长连续序列(java)
给定一个未排序的整数数组 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
解题方法:(哈希表)
1.经过分析得出用哈希表来解题,但是这道题需要我们使用O(n)的时间复杂度来进行解题,所以我们需要用到hashset
。
2.首先我们需要遍历数组将数组中的元素加入到hashset
中,然后再遍历hashset
。
3.在遍历过程中我们首先需要确保当前指向的元素是否有比它更小的元素,有则跳过循环,无则开始检查比它大1
的元素有多少个。
4.最后更新答案即可。
class Solution {
public int longestConsecutive(int[] nums) {
Set<Integer> set = new HashSet<>();
int ans = 0;
if (nums.length < 2) return nums.length;
for (int num : nums) {
set.add(num);
}
for (int x : set) {
if (set.contains(x - 1)) {
continue;
}
int y = x + 1;
while (set.contains(y)) {
y++;
}
ans = Math.max(ans, y - x);
}
return ans;
}
}