leecode-80. 删除排序数组中的重复项 II

给定一个排序数组,你需要在 原地 删除重复出现的元素,使得每个元素最多出现两次,返回移除后数组的新长度。

不要使用额外的数组空间,你必须在 原地 修改输入数组 并在使用 O(1) 额外空间的条件下完成。

示例 1:

1
2
3
输入:nums = [1,1,1,2,2,3]
输出:5, nums = [1,1,2,2,3]
解释:函数应返回新长度 length = 5, 并且原数组的前五个元素被修改为 1, 1, 2, 2, 3 。 你不需要考虑数组中超出新长度后面的元素。

示例 2:

1
2
3
输入:nums = [0,0,1,1,1,1,2,3,3]
输出:7, nums = [0,0,1,1,2,3,3]
解释:函数应返回新长度 length = 7, 并且原数组的前五个元素被修改为 0, 0, 1, 1, 2, 3, 3 。 你不需要考虑数组中超出新长度后面的元素。

说明:

为什么返回数值是整数,但输出的答案是数组呢?

请注意,输入数组是以「引用」方式传递的,这意味着在函数里修改输入数组对于调用者是可见的。

你可以想象内部操作如下:

1
2
3
4
5
6
7
8
// nums 是以“引用”方式传递的。也就是说,不对实参做任何拷贝
int len = removeDuplicates(nums);

// 在函数里修改输入数组对于调用者是可见的。
// 根据你的函数返回的长度, 它会打印出数组中该长度范围内的所有元素。
for (int i = 0; i < len; i++) {
print(nums[i]);
}

解法一:

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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# author:sarizzm time:2020/12/24 0024


class Solution:
def removeDuplicates(self, nums):
# i = 0
j = 0
temp = 0
for i in range(len(nums)):
if nums[j] == nums[i] and temp < 2:
# nums[j] = nums[i]
# j = j+1
temp = temp +1
if temp == 2:
j = j+1
nums[j] = nums[i]
elif nums[j] != nums[i]:
j = j + 1
nums[j] = nums[i]
temp = 1

# else:
# i = i+1

# print(nums)
return j+1

nums = [0,0,1,1,1,2,2,3,3,4]
nums1 = [1,1,1,2,2,3]
print(Solution().removeDuplicates(nums))
# print(nums)
print(Solution().removeDuplicates(nums1))
nums3 = [0,0,1,1,2,3,3]
print(Solution().removeDuplicates(nums3))
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
class Solution {

public int[] remElement(int[] arr, int index) {

//
// Overwrite the element at the given index by
// moving all the elements to the right of the
// index, one position to the left.
//
for (int i = index + 1; i < arr.length; i++) {
arr[i - 1] = arr[i];
}

return arr;
}

public int removeDuplicates(int[] nums) {

// Initialize the counter and the array index.
int i = 1, count = 1, length = nums.length;

//
// Start from the second element of the array and process
// elements one by one.
//
while (i < length) {

//
// If the current element is a duplicate,
// increment the count.
//
if (nums[i] == nums[i - 1]) {

count++;

//
// If the count is more than 2, this is an unwanted duplicate element
// and hence we remove it from the array.
//
if (count > 2) {

this.remElement(nums, i);

//
// Note that we have to decrement the array index value to
// keep it consistent with the size of the array.
//
i--;

//
// Since we have a fixed size array and we can't actually
// remove an element, we reduce the length of the array as
// well.
//
length--;
}
} else {

//
// Reset the count since we encountered a different element
// than the previous one.
//
count = 1;
}

// Move on to the next element in the array
i++;
}

return length;
}
}

//作者:LeetCode
//链接:https://leetcode-cn.com/problems/remove-duplicates-from-sorted-array-ii/solution/shan-chu-pai-xu-shu-zu-zhong-de-zhong-fu-xiang-i-7/


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
//Jerry银银

class Solution {
public int removeDuplicates(int[] nums) {
int i = 0;
for (int n : nums) {
if (i < 2 || n > nums[i-2]) nums[i++] = n;
}
return i;
}
}


// 评论:szza 注解
class Solution {
public:
int removeDuplicates(std::vector<int>& nums) {
if(nums.empty()) return 0;

int L=0;
for(int R=0; R < nums.size(); ++R) {
// nums[L-2] < nums[R]
// 如果重复数字个数不大于2,那么这个判断肯定是成立的
// 如果重复个数大于2,那么nums[L-2] < nums[R]就是不成立的
// 即 多余重复项都被忽视了,直到遇到新的数字或者数字结束
if(L < 2 || nums[L-2] < nums[R]) {
nums[L] = nums[R];
++L;
}
}
return L;
}
};