13. 找出数组中重复的数字
题目来源 https://www.acwing.com/problem/content/description/14/
给定一个长度为 nn 的整数数组 nums
,数组中所有的数字都在 0∼n−10∼n−1 的范围内。
数组中某些数字是重复的,但不知道有几个数字重复了,也不知道每个数字重复了几次。
请找出数组中任意一个重复的数字。
注意:如果某些数字不在 0∼n−10∼n−1 的范围内,或数组中不包含重复数字,则返回 -1;
样例
给定 nums = [2, 3, 5, 4, 3, 2, 6, 7]。
返回 2 或 3。
class Solution {
public:
int duplicateInArray(vector<int>& nums) {
int n = nums.size();
for (auto x: nums){
if(x>n ||x<0){
return -1;
}
}
for (int i =0; i<n; i++){
while (i !=nums[i] && nums[nums[i]] != nums[i]) {
swap (nums[nums[i]],nums[i]);
}
if(i!= nums[i] && nums[nums[i]] == nums[i]) return nums[i];
}
return -1;
}
};
加油,加油。 Try to make youreslf more excellent...