algorithm-base/animation-simulation/数组篇/剑指offer3数组中重复的数.md
2021-03-20 16:30:29 +08:00

83 lines
3.3 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

> 如果阅读时发现错误或者动画不可以显示的问题可以添加我微信好友 **[tan45du_one](https://raw.githubusercontent.com/tan45du/tan45du.github.io/master/个人微信.15egrcgqd94w.jpg)** ,备注 github + 题目 + 问题 向我反馈
>
> 感谢支持该仓库会一直维护希望对各位有一丢丢帮助
>
> 另外希望手机阅读的同学可以来我的 <u>[**公众号袁厨的算法小屋**](https://raw.githubusercontent.com/tan45du/test/master/微信图片_20210320152235.2pthdebvh1c0.png)</u> 两个平台同步,想要和题友一起刷题,互相监督的同学,可以在我的小屋点击<u>[**刷题小队**](https://raw.githubusercontent.com/tan45du/test/master/微信图片_20210320152235.2pthdebvh1c0.png)</u>进入。
#### [剑指 Offer 03. 数组中重复的数字](https://leetcode-cn.com/problems/shu-zu-zhong-zhong-fu-de-shu-zi-lcof/)
**题目描述**
找出数组中重复的数字
在一个长度为 n 的数组 nums 里的所有数字都在 0n-1 的范围内数组中某些数字是重复的但不知道有几个数字重复了也不知道每个数字重复了几次请找出数组中任意一个重复的数字
示例 1
输入
[2, 3, 1, 0, 2, 5, 3]
输出2 3
#### **HashSet**
**解析**
这种题目或许一下就让人想到 HashSet题目描述很清楚就是让我们找到数组中重复的元素那我们第一下想到的就是 HashSet我们遍历数组如果发现 set 含有该元素则返回不含有则存入哈希表题目代码也很简单
**题目代码**
```java
class Solution {
public int findRepeatNumber(int[] nums) {
// HashSet
HashSet<Integer> set = new HashSet<Integer>();
for (int x : nums) {
//发现某元素存在,返回
if (set.contains(x)) {
return x;
}
//存入哈希表
set.add(x);
}
return -1;
}
}
```
#### **原地置换**
**解析**
这一种方法也是我们经常用到的主要用于重复出现的数缺失的数等题目中下面我们看一下这个原地置换法原地置换的大体思路就是将我们**指针对应**的元素放到属于他的位置索引对应的地方我们可以这样理解每个人都有自己的位置我们需要和别人调换回到属于自己的位置调换之后如果发现我们的位置上有人了则返回大致意思了解了下面看代码的执行过程通过视频一下就可以搞懂啦
![剑指offer3数组中重复的数](https://cdn.jsdelivr.net/gh/tan45du/test1@master/20210122/剑指offer3数组中重复的数.2p6cd5os0em0.gif)
**题目代码**
```java
class Solution {
public int findRepeatNumber(int[] nums) {
if (nums.length == 0) {
return -1;
}
for (int i = 0; i < nums.length; ++i) {
while (nums[i] != i) {
//发现重复元素
if (nums[i] == nums[nums[i]]) {
return nums[i];
}
//置换,将指针下的元素换到属于他的索引处
int temp = nums[i];
nums[i] = nums[temp];
nums[temp] = temp;
}
}
return -1;
}
}
```