avatar

LeetCode-1541 数组中重复的数字

📝题目

1
2
3
4
5
6
7
8
9
10
11
12
13
在一个长度为 n 的数组 nums 里的所有数字都在 0~n-1 的范围内。数组中某些数字是重复的,但不知道有几个数字重复了,也不知道每个数字重复了几次。请找出数组中任意一个重复的数字。

示例 1:

输入:
[2, 3, 1, 0, 2, 5, 3]
输出:2 或 3

示例 2:

输入:
[3, 1, 2, 3]
输出:3


📝思路

抽屉原理同理,即如果没有重复数字,那么正常排序后,数字i应该在下标为i的位置。因为出现的元素值必然小于数组长度,所以可以把见到的元素放到索引的位置,如果交换时,发现索引处已存在该元素,则重复。

📝题解

1
2
3
4
5
6
7
8
9
10
11
12
int findRepeatNumber(vector<int>& nums) {
int len = nums.size();
for (int i = 0; i < len; ++i){
while (i != nums[i]){
if (nums[i] == nums[nums[i]]) return nums[i];
int temp = nums[i];
nums[i] = nums[temp];
nums[temp] = temp;
}
}
return -1;
}
Author:WhiteBeerHouse
Link:https://github.com/WhiteBeerHouse/WhiteBeerHouse.github.io/tree/master/2020/04/25/LeetCode-1541-%E6%95%B0%E7%BB%84%E4%B8%AD%E9%87%8D%E5%A4%8D%E7%9A%84%E6%95%B0%E5%AD%97/
Copyright Notice:All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.