zoukankan      html  css  js  c++  java
  • 剑指offer_03_数组中重复的数字(Java)

    题目

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

    示例 1:
    输入:

    [2, 3, 1, 0, 2, 5, 3]

    输出:

    2 或 3

    限制:

    2 <= n <= 100000

    解答

    Hash表

       public static int findRepeatNumber(int[] nums) {
            // 1. 规定了数组长度大于2,不需要判空处理
            int len = nums.length;
            // 2. 定义一个HashMap 用key存储数组元素、值统计次数
            Map dict = new HashMap();
            // 3. 遍历数组,如果在dict中没有元素则put到map,如果该元素已存在,则返回对应的元素。
            for(int i = 0; i < len; i++){
                if(!dict.containsKey(nums[i])){
                    dict.put(nums[i],1);
                }else{
                    return nums[i];
                }
            }
            return 0;
        }
    

    找规律

        public static int findRepeatNumber2(int[] nums) {
             // 1. 遍历数组,如果数组
            for(int i = 0; i < nums.length; i++){
                // 2. 如果nums[i] != i,则交换 nums[i] 和 nums[nums[i]]
                while(nums[i] != i){
                    // 3. 如果nums[i] 和 nums[nums[i]]相等,则表示数组中出现了重复数字
                    if(nums[i] == nums[nums[i]])
                        return nums[i];
                    int temp = nums[i];
                    nums[i] = nums[temp];
                    nums[temp] = temp;
                }
            }
            return 0;
        }
    
  • 相关阅读:
    个人博客
    个人博客
    个人博客
    个人博客
    个人博客
    团队作业—个人记录
    4.21
    4.20
    4.19
    4.18
  • 原文地址:https://www.cnblogs.com/sinlearn/p/14959771.html
Copyright © 2011-2022 走看看