-
Notifications
You must be signed in to change notification settings - Fork 0
/
0041.缺失的第一个正数.cpp
70 lines (68 loc) · 1.37 KB
/
0041.缺失的第一个正数.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/*
* @lc app=leetcode.cn id=41 lang=cpp
*
* [41] 缺失的第一个正数
*
* https://leetcode-cn.com/problems/first-missing-positive/description/
*
* algorithms
* Hard (36.05%)
* Likes: 308
* Dislikes: 0
* Total Accepted: 28.1K
* Total Submissions: 76.1K
* Testcase Example: '[1,2,0]'
*
* 给定一个未排序的整数数组,找出其中没有出现的最小的正整数。
*
* 示例 1:
*
* 输入: [1,2,0]
* 输出: 3
*
*
* 示例 2:
*
* 输入: [3,4,-1,1]
* 输出: 2
*
*
* 示例 3:
*
* 输入: [7,8,9,11,12]
* 输出: 1
*
*
* 说明:
*
* 你的算法的时间复杂度应为O(n),并且只能使用常数级别的空间。
*
*/
// @lc code=start
#include <vector>
using namespace std;
class Solution {
public:
int firstMissingPositive(vector<int>& nums)
{
int idx;
int i;
for (i = 0; i < nums.size(); ++i) {
while (nums[i] != i + 1) {
if (nums[i] > nums.size() || nums[i] <= 0 || nums[i] == nums[nums[i] - 1]) {
break;
}
idx = nums[i] - 1;
nums[i] = nums[idx];
nums[idx] = idx + 1;
}
}
for (i = 0; i < nums.size(); ++i) {
if (nums[i] != i + 1) {
return ++i;
}
}
return ++i;
}
};
// @lc code=end