给定一个未排序的整数数组,找出其中没有出现的最小的正整数。
示例 1:
输入: [1,2,0]
输出: 3
示例 2:
输入: [3,4,-1,1]
输出: 2
示例 3:
输入: [7,8,9,11,12]
输出: 1
说明:
你的算法的时间复杂度应为O(n),并且只能使用常数级别的空间。
题目规定了时间复杂度为O(n),空间复杂度为常数级别
假如现在是在原数组上操作就可以满足常数级别的空间
代码如下:
class Solution:
def firstMissingPositive(self, nums):
"""
:type nums: List[int]
:rtype: int
"""
lens = len(nums)
for i in range(lens):
nums[i] -= 1
if nums[i] < 0 :
nums[i] = -2
for i in range(lens):
t = nums[i]
if t>=0 and t1
while x>=0 and x#链式查找
t = nums[x]
nums[x] = -1
x = t
for i in range(lens):
if nums[i] != -1:
return i+1
return lens+1