0442-数组中重复的数据

Raphael Liu Lv10

给你一个长度为 n 的整数数组 nums ,其中 nums 的所有整数都在范围 [1, n] 内,且每个整数出现 一次
两次 。请你找出所有出现 两次 的整数,并以数组形式返回。

你必须设计并实现一个时间复杂度为 O(n) 且仅使用常量额外空间的算法解决此问题。

示例 1:

**输入:** nums = [4,3,2,7,8,2,3,1]
**输出:** [2,3]

示例 2:

**输入:** nums = [1,1,2]
**输出:** [1]

示例 3:

**输入:** nums = [1]
**输出:** []

提示:

  • n == nums.length
  • 1 <= n <= 105
  • 1 <= nums[i] <= n
  • nums 中的每个元素出现 一次两次

方法一:将元素交换到对应的位置

思路与算法

由于给定的 $n$ 个数都在 $[1, n]$ 的范围内,如果有数字出现了两次,就意味着 $[1,n]$ 中有数字没有出现过。

因此,我们可以尝试将每一个数放在对应的位置。由于数组的下标范围是 $[0, n-1]$,我们需要将数 $i$ 放在数组中下标为 $i-1$ 的位置:

  • 如果 $i$ 恰好出现了一次,那么将 $i$ 放在数组中下标为 $i-1$ 的位置即可;
  • 如果 $i$ 出现了两次,那么我们希望其中的一个 $i$ 放在数组下标中为 $i-1$ 的位置,另一个 $i$ 放置在任意「不冲突」的位置 $j$。也就是说,数 $j+1$ 没有在数组中出现过。

这样一来,如果我们按照上述的规则放置每一个数,那么我们只需要对数组进行一次遍历。当遍历到位置 $i$ 时,如果 nums}[i]-1 \neq i$,说明 nums}[i]$ 出现了两次(另一次出现在位置 num}[i] - 1$),我们就可以将 num}[i]$ 放入答案。

放置的方法也很直观:我们对数组进行一次遍历。当遍历到位置 $i$ 时,我们知道 nums}[i]$ 应该被放在位置 nums}[i] - 1$。因此我们交换 num}[i]$ 和 nums}[\textit{nums}[i] - 1]$ 即可,直到待交换的两个元素相等为止。

代码

[sol1-Python3]
1
2
3
4
5
6
class Solution:
def findDuplicates(self, nums: List[int]) -> List[int]:
for i in range(len(nums)):
while nums[i] != nums[nums[i] - 1]:
nums[nums[i] - 1], nums[i] = nums[i], nums[nums[i] - 1]
return [num for i, num in enumerate(nums) if num - 1 != i]
[sol1-C++]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
class Solution {
public:
vector<int> findDuplicates(vector<int>& nums) {
int n = nums.size();
for (int i = 0; i < n; ++i) {
while (nums[i] != nums[nums[i] - 1]) {
swap(nums[i], nums[nums[i] - 1]);
}
}
vector<int> ans;
for (int i = 0; i < n; ++i) {
if (nums[i] - 1 != i) {
ans.push_back(nums[i]);
}
}
return ans;
}
};
[sol1-Java]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
class Solution {
public List<Integer> findDuplicates(int[] nums) {
int n = nums.length;
for (int i = 0; i < n; ++i) {
while (nums[i] != nums[nums[i] - 1]) {
swap(nums, i, nums[i] - 1);
}
}
List<Integer> ans = new ArrayList<Integer>();
for (int i = 0; i < n; ++i) {
if (nums[i] - 1 != i) {
ans.add(nums[i]);
}
}
return ans;
}

public void swap(int[] nums, int index1, int index2) {
int temp = nums[index1];
nums[index1] = nums[index2];
nums[index2] = temp;
}
}
[sol1-C#]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
public class Solution {
public IList<int> FindDuplicates(int[] nums) {
int n = nums.Length;
for (int i = 0; i < n; ++i) {
while (nums[i] != nums[nums[i] - 1]) {
Swap(nums, i, nums[i] - 1);
}
}
IList<int> ans = new List<int>();
for (int i = 0; i < n; ++i) {
if (nums[i] - 1 != i) {
ans.Add(nums[i]);
}
}
return ans;
}

public void Swap(int[] nums, int index1, int index2) {
int temp = nums[index1];
nums[index1] = nums[index2];
nums[index2] = temp;
}
}
[sol1-Golang]
1
2
3
4
5
6
7
8
9
10
11
12
13
func findDuplicates(nums []int) (ans []int) {
for i := range nums {
for nums[i] != nums[nums[i]-1] {
nums[i], nums[nums[i]-1] = nums[nums[i]-1], nums[i]
}
}
for i, num := range nums {
if num-1 != i {
ans = append(ans, num)
}
}
return
}
[sol1-JavaScript]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
var findDuplicates = function(nums) {
const swap = (nums, index1, index2) => {
const temp = nums[index1];
nums[index1] = nums[index2];
nums[index2] = temp;
};
const n = nums.length;
for (let i = 0; i < n; ++i) {
while (nums[i] != nums[nums[i] - 1]) {
swap(nums, i, nums[i] - 1);
}
}
const ans = [];
for (let i = 0; i < n; ++i) {
if (nums[i] - 1 !== i) {
ans.push(nums[i]);
}
}
return ans;
}
[sol1-C]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
int* findDuplicates(int* nums, int numsSize, int* returnSize) {
for (int i = 0; i < numsSize; ++i) {
while (nums[i] != nums[nums[i] - 1]) {
int tmp = nums[i];
nums[i] = nums[tmp - 1];
nums[tmp - 1] = tmp;
}
}
int *ans = (int *)malloc(sizeof(int) * numsSize);
int pos = 0;
for (int i = 0; i < numsSize; ++i) {
if (nums[i] - 1 != i) {
ans[pos++] = nums[i];
}
}
*returnSize = pos;
return ans;
}

复杂度分析

  • 时间复杂度:$O(n)$。每一次交换操作会使得至少一个元素被交换到对应的正确位置,因此交换的次数为 $O(n)$,总时间复杂度为 $O(n)$。

  • 空间复杂度:$O(1)$。返回值不计入空间复杂度。

方法二:使用正负号作为标记

思路与算法

我们也可以给 nums}[i]$ 加上「负号」表示数 $i+1$ 已经出现过一次。具体地,我们首先对数组进行一次遍历。当遍历到位置 $i$ 时,我们考虑 nums}[\textit{nums}[i] - 1]$ 的正负性:

  • 如果 nums}[\textit{nums}[i] - 1]$ 是正数,说明 nums}[i]$ 还没有出现过,我们将 nums}[\textit{nums}[i] - 1]$ 加上负号;

  • 如果 nums}[\textit{nums}[i] - 1]$ 是负数,说明 nums}[i]$ 已经出现过一次,我们将 nums}[i]$ 放入答案。

细节

由于 nums}[i]$ 本身可能已经为负数,因此在将 nums}[i]$ 作为下标或者放入答案时,需要取绝对值。

代码

[sol2-Python3]
1
2
3
4
5
6
7
8
9
10
class Solution:
def findDuplicates(self, nums: List[int]) -> List[int]:
ans = []
for x in nums:
x = abs(x)
if nums[x - 1] > 0:
nums[x - 1] = -nums[x - 1]
else:
ans.append(x)
return ans
[sol2-C++]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
class Solution {
public:
vector<int> findDuplicates(vector<int>& nums) {
int n = nums.size();
vector<int> ans;
for (int i = 0; i < n; ++i) {
int x = abs(nums[i]);
if (nums[x - 1] > 0) {
nums[x - 1] = -nums[x - 1];
}
else {
ans.push_back(x);
}
}
return ans;
}
};
[sol2-Java]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class Solution {
public List<Integer> findDuplicates(int[] nums) {
int n = nums.length;
List<Integer> ans = new ArrayList<Integer>();
for (int i = 0; i < n; ++i) {
int x = Math.abs(nums[i]);
if (nums[x - 1] > 0) {
nums[x - 1] = -nums[x - 1];
} else {
ans.add(x);
}
}
return ans;
}
}
[sol2-C#]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
public class Solution {
public IList<int> FindDuplicates(int[] nums) {
int n = nums.Length;
IList<int> ans = new List<int>();
for (int i = 0; i < n; ++i) {
int x = Math.Abs(nums[i]);
if (nums[x - 1] > 0) {
nums[x - 1] = -nums[x - 1];
} else {
ans.Add(x);
}
}
return ans;
}
}
[sol2-Golang]
1
2
3
4
5
6
7
8
9
10
11
12
13
func findDuplicates(nums []int) (ans []int) {
for _, x := range nums {
if x < 0 {
x = -x
}
if nums[x-1] > 0 {
nums[x-1] = - nums[x-1]
} else {
ans = append(ans, x)
}
}
return
}
[sol2-JavaScript]
1
2
3
4
5
6
7
8
9
10
11
12
13
var findDuplicates = function(nums) {
const n = nums.length;
const ans = [];
for (let i = 0; i < n; ++i) {
const x = Math.abs(nums[i]);
if (nums[x - 1] > 0) {
nums[x - 1] = -nums[x - 1];
} else {
ans.push(x);
}
}
return ans;
}
[sol2-C]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
int* findDuplicates(int* nums, int numsSize, int* returnSize) {    
int *ans = (int *)malloc(sizeof(int) * numsSize);
int pos = 0;
for (int i = 0; i < numsSize; ++i) {
int x = abs(nums[i]);
if (nums[x - 1] > 0) {
nums[x - 1] = -nums[x - 1];
} else {
ans[pos++] = x;
}
}
*returnSize = pos;
return ans;
}

复杂度分析

  • 时间复杂度:$O(n)$。我们只需要对数组 nums 进行一次遍历。

  • 空间复杂度:$O(1)$。返回值不计入空间复杂度。

 Comments
On this page
0442-数组中重复的数据