码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode-存在重复元素

时间:2021-07-05 17:13:27      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:整数   set   哈希   ems   title   一个   cat   ++   给定一个整数数组   

  1. 存在重复元素
    题目链接:
    leetcode

给定一个整数数组,判断是否存在重复元素。
如果存在一值在数组中出现至少两次,函数返回 true 。
如果数组中每个元素都不相同,则返回 false 。

最简单的就是直接用哈希表,从左往右遍历,检测哈希表是否存在当前元素。
存在就直接返回false,不存在就加入哈希表。

    public boolean containsDuplicate(int[] nums) {
        HashSet<Integer> set = new HashSet<>();
        for (int x : nums) {
            if (!set.add(x)) {
                return true;
            }
        }
        return false;
    }

也可以给数组排序,然后判断相邻的两个元素是否重复

    public boolean containsDuplicate(int[] nums) {
        int n = nums.length;
        if(n==0||n==1){
            return false;
        }
        Arrays.sort(nums);
        for(int i = 0;i<n-1;i++){
            if(nums[i]==nums[i+1]){
                return true;
            }
        }
        return false;
    }

leetcode-存在重复元素

标签:整数   set   哈希   ems   title   一个   cat   ++   给定一个整数数组   

原文地址:https://www.cnblogs.com/supercute/p/14965294.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!