leetcode128最长连续序列
Posted lisin-lee-cooper
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode128最长连续序列相关的知识,希望对你有一定的参考价值。
一.问题描述
给定一个未排序的整数数组 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
二.示例代码
public class LongestContinuousSeq128 {
public static void main(String[] args) {
int[] nums = new int[]{100, 4, 200, 1, 3, 2};
int result = longestConsecutive(nums);
System.out.println(result);
}
public static int longestConsecutive(int[] nums) {
Set<Integer> numSet = new HashSet<>();
for (int num : nums) {
numSet.add(num);
}
int longestLength = 0;
for (int num : numSet) {
if (numSet.contains(num - 1)) {
continue;
}
int currentNum = num;
int currentLength = 1;
while (numSet.contains(currentNum + 1)) {
currentNum++;
currentLength++;
}
longestLength = Math.max(longestLength, currentLength);
}
return longestLength;
}
}
以上是关于leetcode128最长连续序列的主要内容,如果未能解决你的问题,请参考以下文章