哈希集合
Posted mcxdeboke
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了哈希集合相关的知识,希望对你有一定的参考价值。
找出数组中重复的数字。
在一个长度为 n 的数组 nums 里的所有数字都在 0~n-1 的范围内。数组中某些数字是重复的,但不知道有几个数字重复了,也不知道每个数字重复了几次。请找出数组中任意一个重复的数字。
示例 1:
输入:
[2, 3, 1, 0, 2, 5, 3]
输出:2 或 3
限制:
2 <= n <= 100000
代码:
public class Solution {
public int FindRepeatNumber(int[] nums) {
HashSet<int> hs=new HashSet<int>();
for(int i=0;i<nums.Length;i++){
if(hs.Contains(nums[i])){
return nums[i];
}
else{
hs.Add(nums[i]);
}
}
return 0;
}
}
以上是关于哈希集合的主要内容,如果未能解决你的问题,请参考以下文章
Leetcode刷题100天—705. 设计哈希集合(集合)—day74
Leetcode刷题100天—705. 设计哈希集合(集合)—day74