这篇文章给大家分享的是有关LeetCode如何找出缺失的第一个正数的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。
一,缺失的第一个正数
1,问题简述
给你一个未排序的整数数组,请你找出其中没有出现的最小的正整数。
2,示例描述
示例 1:
输入: [1,2,0]
输出: 3
示例 2:
输入: [3,4,-1,1]
输出: 2
示例 3:
输入: [7,8,9,11,12]
输出: 1
3,题解思路
基于hashSet,list集合来做
4,题解程序
import java.util.Arrays;
import java.util.HashSet;
import java.util.stream.Collectors;
public class FirstMissingPositiveTest2 {
public static void main(String[] args) {
int [] nums={1,2,0};
firstMissingPositive(nums);
}
public static int firstMissingPositive(int[] nums) {
if (nums == null || nums.length == 0) {
return 1;
}
int length = nums.length;
HashSet<Integer> hashSet = Arrays
.stream(nums)
.boxed()
.collect(Collectors.toCollection(() -> new HashSet<>(length)));
for (int i = 1; i <= nums.length; i++) {
if (!hashSet.contains(i)) {
return i;
}
}
return length + 1;
}
}
感谢各位的阅读!关于“LeetCode如何找出缺失的第一个正数”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/223634.html