剑指Offer : 面试题 3 - 数组中重复的数字

4 篇文章 0 订阅
1 篇文章 0 订阅

剑指Offer : 面试题 3 - 数组中重复的数字

题目

找出数组中重复的数字

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

例,

​ 输入: {2, 3, 1, 0, 2, 5, 3}

​ 输出: 2 或 3

我的解法

思路一

创建一个长度为 n n n 数组 aux, 下标 i i i 表示数字 i i i 出现过的次数. 遍历数组, 如果 aux[i] 的值不等于 0, 则返回当前数字.

时间复杂度: O ( n ) O(n) O(n)

空间复杂度: O ( n ) O(n) O(n)

public class Solution {
  public int repeat(int[] nums) {
    if (nums==null) { return -1; }
    if (nums.length==1) { return -1; }
    int[] aux = new int[nums.length];
    for (int current:nums) {
      if (aux[current]!=0) {
        return current;
      } else {
      	aux[current]++;
      }
    }
    return -1;
  }
}
思路二

将数组排序, 然后遍历数组.

时间复杂度: O ( n log ⁡ n ) O(n\log n) O(nlogn)

空间复杂度: O ( n ) O(n) O(n)

public class Solution {
  public int repeat(int[] nums) {
    if (nums==null) { return -1; }
    if (nums.length==1) { return -1; }
    Arrays.sort(nums);
    int current = nums[0];
    for (int i=1; i<nums.length; i++) {
      if (nums[i]==current) {
        return current;
      } else {
        current = nums[i];
      }
    }
    return -1;
  }
}

Arrays.sort() 使用归并排序, 时间复杂度 O ( n log ⁡ n ) O(n\log n) O(nlogn), 空间复杂度 O ( n ) O(n) O(n).

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值