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

217.存在重复元素

时间:2019-07-08 14:00:35      阅读:89      评论:0      收藏:0      [点我收藏+]

标签:else   lse   arrays   static   als   contain   new   http   array   

技术图片
这道题采用的是hashset 如果重复的话就return true
方法不难

 public boolean containsDuplicate(int[] nums) {
        HashSet<Integer> hs = new HashSet<Integer>();
        for(int i = 0 ;i< nums.length;i++) {
            if(hs.contains(nums[i])) {
                return true;
            }
            else {
                hs.add(nums[i]);
            }
        } 
        return false;
        }

另外一种是排序完在进行判断是否有重复的

 public static boolean sContainsDuplicate(int[] nums)
    {
        Arrays.sort(nums);
        if (nums.length <= 1)
        {
            return false;
        }
        int tem = nums[0];
        for (int i = 1; i < nums.length; i++)
        {
            if (nums[i] == tem)
            {
                return true;
            } else
            {
                tem = nums[i];
            }
        }
        return false;
    }

217.存在重复元素

标签:else   lse   arrays   static   als   contain   new   http   array   

原文地址:https://www.cnblogs.com/cznczai/p/11150445.html

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