当前位置:网站首页>剑指 Offer 03. 数组中重复的数字

剑指 Offer 03. 数组中重复的数字

2022-04-23 17:32:00 hequnwang10

一、题目描述

找出数组中重复的数字。

在一个长度为 n 的数组 nums 里的所有数字都在 0~n-1 的范围内。数组中某些数字是重复的,但不知道有几个数字重复了,也不知道每个数字重复了几次。请找出数组中任意一个重复的数字。

示例 1:
输入:
[2, 3, 1, 0, 2, 5, 3]
输出:2 或 3 

二、解题

原地哈希

将数值放在对应的下标处即可,交换数据,如果出现重复直接放回重复的数据即可。

class Solution {
    
    public int findRepeatNumber(int[] nums) {
    
        //原地哈希
        int length = nums.length;
        for(int i = 0;i<length;i++){
    
            //如果出现重复 则nums[nums[i]] == nums[i]
            while(nums[nums[i]] != i){
    
                //交换数据后,发现重复了,则返回
                if (nums[i] == nums[nums[i]]) {
    
                    return nums[i];
                }
                swap(nums,nums[i],i);
            }
        }
        return -1;
    }
    public void swap(int[] nums,int left,int right){
    
        int temp = nums[left];
        nums[left] = nums[right];
        nums[right] = temp;
    }
}

版权声明
本文为[hequnwang10]所创,转载请带上原文链接,感谢
https://blog.csdn.net/hequnwang10/article/details/124211022