-
Notifications
You must be signed in to change notification settings - Fork 0
/
26.删除有序数组中的重复项.cpp
93 lines (91 loc) · 2.41 KB
/
26.删除有序数组中的重复项.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
/*
* @lc app=leetcode.cn id=26 lang=cpp
*
* [26] 删除有序数组中的重复项
*
* https://leetcode.cn/problems/remove-duplicates-from-sorted-array/description/
*
* algorithms
* Easy (56.73%)
* Likes: 3602
* Dislikes: 0
* Total Accepted: 1.9M
* Total Submissions: 3.4M
* Testcase Example: '[1,1,2]'
*
* 给你一个 非严格递增排列 的数组 nums ,请你 原地
* 删除重复出现的元素,使每个元素 只出现一次 ,返回删除后数组的新长度。元素的
* 相对顺序 应该保持 一致 。然后返回 nums 中唯一元素的个数。
*
* 考虑 nums 的唯一元素的数量为 k ,你需要做以下事情确保你的题解可以被通过:
*
*
* 更改数组 nums ,使 nums 的前 k 个元素包含唯一元素,并按照它们最初在 nums
* 中出现的顺序排列。nums 的其余元素与 nums 的大小不重要。 返回 k 。
*
*
* 判题标准:
*
* 系统会用下面的代码来测试你的题解:
*
*
* int[] nums = [...]; // 输入数组
* int[] expectedNums = [...]; // 长度正确的期望答案
*
* int k = removeDuplicates(nums); // 调用
*
* assert k == expectedNums.length;
* for (int i = 0; i < k; i++) {
* assert nums[i] == expectedNums[i];
* }
*
* 如果所有断言都通过,那么您的题解将被 通过。
*
*
*
* 示例 1:
*
*
* 输入:nums = [1,1,2]
* 输出:2, nums = [1,2,_]
* 解释:函数应该返回新的长度 2 ,并且原数组 nums 的前两个元素被修改为 1, 2
* 。不需要考虑数组中超出新长度后面的元素。
*
*
* 示例 2:
*
*
* 输入:nums = [0,0,1,1,1,2,2,3,3,4]
* 输出:5, nums = [0,1,2,3,4]
* 解释:函数应该返回新的长度 5 , 并且原数组 nums 的前五个元素被修改为 0, 1, 2,
* 3, 4 。不需要考虑数组中超出新长度后面的元素。
*
*
*
*
* 提示:
*
*
* 1 <= nums.length <= 3 * 10^4
* -10^4 <= nums[i] <= 10^4
* nums 已按 非严格递增 排列
*
*
*/
// @lc code=start
#include <vector>
using namespace std;
class Solution {
public:
int removeDuplicates(vector<int>& nums) {
int i, j;
if (nums.size() == 0) return 0;
for (i = 0, j = 1; j < nums.size(); j++) { // j不断向后寻找
if (nums[i] != nums[j]) { // i和j各自后移一位
nums[++i] = nums[j]; // 如果j=i+1,相当于什么都没有做。
}
}
return i + 1;
}
};
// @lc code=end