剑指Offer JZ3-数组中重复的数字

剑指offer JZ3-数组中重复的数字


在这里插入图片描述

题目

在一个长度为n的数组里的所有数字都在0n-1的范围内。 数组中某些数字是重复的,但不知道有几个数字是重复的。也不知道每个数字重复几次。请找出数组中任意一个重复的数字。 例如,如果输入长度为7的数组[2,3,1,0,2,5,3],那么对应的输出是2或者3。存在不合法的输入的话输出-1:

数据范围:0<=n<=1000
进阶:时间复杂度O(n) ,空间复杂度O(n)

示例一

输入:[2,3,1,0,2,5,3]
返回值:2
说明:2或3都是对的

解法一

public static int duplicate(int[] numbers) {
		for (int i = 0; i < numbers.length; i++) {
			for (int j = i + 1; j < numbers.length; j++) {
				if (numbers[i] == numbers[j]) {
					return numbers[i];
				}
			}
		}
		return -1;
	}

简单说明

思想简单,就是拿数组中第一个元素和他身后所有元素比较,若找到和第一个元素相等的元素,则返回第一个元素值;若没有找到和第一个元素相等的,则拿数组中第二个元素和他身后所有元素比较,以此类推。可以解题,但时间复杂度为O(n^2)。

解法二:

public static int duplicate(int[] numbers) {
		HashSet<Integer> hashSet = new HashSet<Integer>();
		for (int i = 0; i < numbers.length; i++) {
			if (!hashSet.add(numbers[i])) {
				return numbers[i];
			}
		}
		return -1;
	}

简单说明:
利用了Java中set集合去重的特点。解释一点:!hashSet.add(numbers[i])。我们阅读JDK中HashSet的add()方法。

/**
     * Adds the specified element to this set if it is not already present.
     * More formally, adds the specified element <tt>e</tt> to this set if
     * this set contains no element <tt>e2</tt> such that
     * <tt>(e==null&nbsp;?&nbsp;e2==null&nbsp;:&nbsp;e.equals(e2))</tt>.
     * If this set already contains the element, the call leaves the set
     * unchanged and returns <tt>false</tt>.
     *
     * @param e element to be added to this set
     * @return <tt>true</tt> if this set did not already contain the specified
     * element
     */
    public boolean add(E e) {
        return map.put(e, PRESENT)==null;
    }

注意注释的第5行,大致意思是说,如果集合中已包含此元素,集合保持不变,add()返回false。add()返回false就表示set集合中已包含此元素,此元素为重复元素。!hashSet.add(numbers[i])的值为true。返回此元素值。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值