LeetCode 面试题03. 数组中重复的数字
2021-01-30 23:14
标签:ref 空间复杂度 数组 ret problems for uri 著作权 校验 找出数组中重复的数字。 在一个长度为 n 的数组 nums 里的所有数字都在 0~n-1 的范围内。数组中某些数字是重复的,但不知道有几个数字重复了,也不知道每个数字重复了几次。请找出数组中任意一个重复的数字。 示例 1: 限制: 来源:力扣(LeetCode) 略 算法复杂度: 略 LeetCode 面试题03. 数组中重复的数字 标签:ref 空间复杂度 数组 ret problems for uri 著作权 校验 原文地址:https://www.cnblogs.com/izhoujie/p/12819103.html我的LeetCode:https://leetcode-cn.com/u/ituring/
我的LeetCode刷题源码[GitHub]:https://github.com/izhoujie/Algorithmcii
LeetCode 面试题03. 数组中重复的数字
题目
输入:
[2, 3, 1, 0, 2, 5, 3]
输出:2 或 3
链接:https://leetcode-cn.com/problems/shu-zu-zhong-zhong-fu-de-shu-zi-lcof
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。解题思路
思路1-鸽巢计数
思路2-原地值与索引的校验
算法复杂度:
算法源码示例
package leetcode;
/**
* @author ZhouJie
* @date 2020年4月28日 下午4:10:35
* @Description: 面试题03. 数组中重复的数字
*
*/
public class LeetCode_Offer_03 {
/**
* @author: ZhouJie
* @date: 2020年4月28日 下午4:28:09
* @param: @param nums
* @param: @return
* @return: int
* @Description: 1-统计
*
*/
public int findRepeatNumber_1(int[] nums) {
int[] stastic = new int[nums.length];
for (int i : nums) {
stastic[i]++;
if (stastic[i] > 1) {
return i;
}
}
return nums[0];
}
/**
* @author: ZhouJie
* @date: 2020年4月28日 下午4:28:24
* @param: @param nums
* @param: @return
* @return: int
* @Description: 2-归位校验
*
*/
public int findRepeatNumber_2(int[] nums) {
for (int i = 0; i
上一篇:springboot拦截器
下一篇:linux执行jar的两种方式
文章标题:LeetCode 面试题03. 数组中重复的数字
文章链接:http://soscw.com/index.php/essay/49226.html