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

in place swap 笔记

时间:2016-10-05 07:13:29      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:

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.

尝试下用两根指针进行调换排序,但是处理返回结果太麻烦

简单的方式是扫描一遍数组,当有misplace的数的时候,把它换到它相应的正确位置上去

技术分享
 1 public class Solution {
 2     public int firstMissingPositive(int[] A) {
 3         if (A == null) {
 4             return 1;
 5         } 
 6         for (int i = 0; i < A.length; i++) {
 7             while (A[i] > 0 && A[i] <= A.length && A[i] != (i+1)) {//找到位置不正确的点和正确位置的点交换
 8                 int tmp = A[A[i]-1];
 9                 if (tmp == A[i]) {
10                     break;
11                 }
12                 A[A[i]-1] = A[i];
13                 A[i] = tmp;
14             }
15         }
16 
17         for (int i = 0; i < A.length; i++) {
18             if (A[i] != (i+1)) {
19                 return i + 1;
20             }
21         }
22         return A.length + 1;
23     }
24     
25 }
View Code

 

in place swap 笔记

标签:

原文地址:http://www.cnblogs.com/jiangchen/p/5931597.html

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