Java解 leetcode 217. 存在重复元素

Posted 闭关苦炼内功

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java解 leetcode 217. 存在重复元素相关的知识,希望对你有一定的参考价值。

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

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

示例 1:
输入: [1,2,3,1]
输出: true


示例 2:
输入: [1,2,3,4]
输出: false


示例 3:
输入: [1,1,1,3,3,4,3,2,4,2]
输出: true


  • 通过排序解决
class Solution {
    public boolean containsDuplicate(int[] nums) {
        // solution1: 排序
        // 时间复杂度:O(NlogN),其中 N 为数组的长度。需要对数组进行排序。
        // 空间复杂度:O(logN)
        Arrays.sort(nums);
        for(int i=0; i < nums.length - 1; i++){
            if(nums[i] == nums[i+1]){
                return true;
            }
        }
        return false;
    }
}

  • 通过哈希表解决
class Solution {
    public boolean containsDuplicate(int[] nums) {
        // solution2: 哈希表
        // 时间复杂度:O(N)
        // 空间复杂度:O(N),其中 NN 为数组的长度。
        Set<Integer> set = new HashSet<Integer>();
        for(int x : nums){
            if(!set.add(x)){
                return true;
            }
        }
        return false;
    }
}

以上是关于Java解 leetcode 217. 存在重复元素的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode第38天 - 217. 存在重复元素

LeetCode刷题217-简单-存在重复元素

LeetCode:存在重复元素217

[JavaScript 刷题] 哈希表 - 存在重复元素, leetcode 217

LeetCode Algorithm 217. 存在重复元素

leetcode217 存在重复元素(Easy)