码迷,mamicode.com
首页 > 其他好文 > 详细

[Leetcode] First Missing Positive

时间:2014-12-01 17:31:54      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   ar   color   os   sp   for   

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.

 

http://www.cnblogs.com/AnnieKim/archive/2013/04/21/3034631.html

 1 public class Solution {
 2     public int firstMissingPositive(int[] A) {
 3         if(A==null||A.length==0)
 4             return 1;
 5         int n=A.length;
 6         for(int i=0;i<n;){
 7             if((A[i]!=i+1)&&A[i]>=1&&A[i]<=A.length&&A[A[i]-1]!=A[i]){
 8                 int temp=A[A[i]-1];
 9                 A[A[i]-1]=A[i];
10                 A[i]=temp;
11             }else{
12                 ++i;
13             }
14         }
15         for(int i=0;i<A.length;++i){
16             if(A[i]!=i+1)
17                 return i+1;
18         }
19         return A.length+1;
20     }
21 }

 

[Leetcode] First Missing Positive

标签:style   blog   http   io   ar   color   os   sp   for   

原文地址:http://www.cnblogs.com/Phoebe815/p/4135534.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!