当前位置:   article > 正文

力扣287【寻找重复数】

力扣287【寻找重复数】

给定一个包含 n + 1 个整数的数组 nums ,其数字都在 [1, n] 范围内(包括 1 和 n),可知至少存在一个重复的整数。
假设 nums 只有 一个重复的整数 ,返回 这个重复的数 。
你设计的解决方案必须 不修改 数组 nums 且只用常量级 O(1) 的额外空间。

脑子不好使了,只能这样解决了!

class Solution {
    public int findDuplicate(int[] nums) {
    int out = -1;
        for(int i = 0; i < nums.length; i++){
        //下标保证为正
            int index = Math.abs(nums[i]);
        //如果此下标的数已经为负数,说明翻转一次了
            if(nums[index]  < 0)
                out = index;
        //将此下标的数变为负数
            nums[index] = -nums[index];
        }
        //将数组变回去
        for(int i = 0; i < nums.length; i++)
        	nums[i] = Math.abs(nums[i]);
        return out;
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小惠珠哦/article/detail/931995
推荐阅读
相关标签
  

闽ICP备14008679号