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

[leetcode] First Missing Positive

时间:2015-02-01 16:13:42      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:

First Missing Positive

 Total Accepted: 27915 Total Submissions: 121776My Submissions

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.

package com.wyt.leetcodeOJ;

import java.util.HashMap;
import java.util.Map;

public class FirstMissingPositive {

	public static void main(String[] args) {
		int[] A = {3,4,-1,1};
		System.out.println(firstMissingPositive(A));
	}

	public static int firstMissingPositive(int[] A) {
		
		if(A == null || A.length == 0) {
			return 1;
		}
		
        Map<Integer, Integer> map = new HashMap<Integer, Integer>();
        
        for (int i = 0; i < A.length; i++) {
			if (!map.containsValue(A[i])) {
				map.put(A[i], A[i]);
			}
		}
        int result = 1;
        while (map.get(result)!=null) {
        	result++;
		}
        
        return result;
    }
}


[leetcode] First Missing Positive

标签:

原文地址:http://blog.csdn.net/intmain_rocking/article/details/43371493

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