leetcode-217 Contains Duplicate

题目

判断数组中是否存在重复的元素

Given an array of integers, find if the array contains any duplicates.

Your function should return true if any value appears at least twice in the array, and it should return false if every element is distinct.

Example 1:

Input: [1,2,3,1]
Output: true
Example 2:

Input: [1,2,3,4]
Output: false
Example 3:

Input: [1,1,1,3,3,4,3,2,4,2]
Output: true

思路1

双层循环,一一比对,时间复杂度O(n^2)

思路2

将数组排序后遍历一次,检查相邻元素是否相等,时间复杂度(nlgn)

思路3

使用HashSet这种数据结构,使得插入和查找操作的复杂度为O(1),遍历数组一次,若元素不重复则插入,重复则直接返回false,时间复杂度为O(n)

代码


class Solution {
    public boolean containsDuplicate(int[] nums) {
        Set<Integer> set = new HashSet<>(nums.length);
        for(int num :nums){
        	if(set.contains(num)) return true;
        	set.add(num);
        }

        return false;

    }
}

Runtime: 10 ms, faster than 50.95% of Java online submissions for Contains Duplicate.
Memory Usage: 41.6 MB, less than 47.93% of Java online submissions for Contains Duplicate.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值