首页 > 其他 > 详细

First Missing Positive

时间:2014-02-06 16:16:58      阅读:357      评论:0      收藏:0      [点我收藏+]

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.

bubuko.com,布布扣
 1 public class Solution {
 2     public int firstMissingPositive(int[] A) {
 3         if(A.length<=0) return 1;
 4         int n = A.length;
 5         for(int i=0;i<n;i++){
 6             if(A[i]<=0){
 7                 A[i]=n+2;
 8             }
 9         }
10         for(int i=0;i<n;i++){
11             int temp = Math.abs(A[i]);
12             if(temp<=n){
13                 A[temp-1] = -Math.abs(A[temp-1]);
14             }
15         }
16         for(int i=0;i<n;i++){
17             if(A[i]>0){
18                 return i+1;
19             }
20         }
21         return n+1;
22     }
23 }
View Code

First Missing Positive

原文:http://www.cnblogs.com/krunning/p/3538742.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!