首页 > 代码库 > [leetcode] First Missing Positive

[leetcode] First Missing Positive

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