首页 > 代码库 > 41. First Missing Positive
41. First Missing Positive
Given an unsorted integer array, find the first missing positive integer.
For example,
Given [1,2,0]
return 3
,
and [3,4,-1,1]
return 2
.
Your algorithm should run in O(n) time and uses constant space.
example [-1,-2, 1,3];
i ++;
i++ ;
i = 2 nums[2] = 1; nums[nums[2] -1] = nums[0] exchange with nums[2] -> [1, -2, -1, 3]
i++;
i=3 nums[3] = 3 -> nums[2] exchange with nums[3] - > [1,-2,3,-1];
out of loop
anther loop nums[0]= 1 got, nums[1] =-2 return i+1 -> 2
public class Solution { public int firstMissingPositive(int[] nums) { int i = 0 ; while(i < nums.length){ if(nums[i] == i + 1 || nums[i] <= 0 || nums[i] > nums.length) i++; else if(nums[i] != nums[nums[i]-1]) swap(nums, i, nums[i]-1); else i++; } i = 0; while(i < nums.length && i+1 == nums[i]) i++; return i+1; } public void swap(int[] nums, int i, int j){ int temp = nums[i]; nums[i] = nums[j]; nums[j] = temp; } }
41. First Missing Positive
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。