首页 > 代码库 > [leetcode] First Missing Positive
[leetcode] First Missing Positive
First Missing Positive
Total Accepted: 27915 Total Submissions: 121776My SubmissionsGiven 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
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。