在一个长度为 n 的数组 nums 里的所有数字都在 0~n-1 的范围内。数组中某些数字是重复的,但不知道有几个数字重复了,也不知道每个数字重复了几次。请找出数组中任意一个重复的数字。
示例 1: 输入: [2, 3, 1, 0, 2, 5, 3] 输出:2 或 3
来源:力扣(LeetCode) 链接:https://leetcode-cn.com/problems/shu-zu-zhong-zhong-fu-de-shu-zi-lcof
思路
先排序,然后遍历数组找有没有重复的数字,若找到了则直接结束遍历并返回该值
代码
class Solution {
public:
int findRepeatNumber(vector
<int>& nums
) {
sort(nums
.begin(),nums
.end());
int i
,j
;
int ret
;
for(i
=0;i
<nums
.size()-1;i
++)
{
if(nums
[i
]==nums
[i
+1])
{
ret
=nums
[i
];
break;
}
}
return ret
;
}
};
总结
一开始我打算直接遍历数组并一一对比前面的元素,但是超时了= =,然后发现可以先排序再遍历,这样就只需要遍历一遍,并对比前后两个数据了