首页 > 其他 > 详细

[leetcode]41. First Missing Positive第一个未出现的正数

时间:2019-04-18 16:04:57      阅读:173      评论:0      收藏:0      [点我收藏+]

Given an unsorted integer array, find the smallest missing positive integer.

Example 1:

Input: [1,2,0]
Output: 3

Example 2:

Input: [3,4,-1,1]
Output: 2

Example 3:

Input: [7,8,9,11,12]
Output: 1

Note:

Your algorithm should run in O(n) time and uses constant extra space.

 

题意:

给定无序数组,找出第一个未出现的正整数。

 

Solution1:

code

 

[leetcode]41. First Missing Positive第一个未出现的正数

原文:https://www.cnblogs.com/liuliu5151/p/10730091.html

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