我用java刷 leetcode 217. 存在重复元素
Posted 深林无鹿
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了我用java刷 leetcode 217. 存在重复元素相关的知识,希望对你有一定的参考价值。
这里有leetcode题集分类整理!!!
题目难度:简单
题目描述:
给定一个整数数组,判断是否存在重复元素。
如果存在一值在数组中出现至少两次,函数返回 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
Hash AC: (17ms)
class Solution {
public boolean containsDuplicate(int[] nums) {
Map<Integer, Integer> hashmap = new HashMap<Integer, Integer>();
for (int val: nums) {
hashmap.put(val, hashmap.getOrDefault(val, 0) + 1);
if (hashmap.get(val) > 1) return true;
}
return false;
}
}
Sort 遍历 (4ms)
class Solution {
public boolean containsDuplicate(int[] nums) {
Arrays.sort(nums);
for (int i = 0 ; i < nums.length - 1 ; i ++) {
if (nums[i] == nums[i + 1]) return true;
}
return false;
}
}
My Hash: (23ms)
class Solution {
public boolean containsDuplicate(int[] nums) {
int[] hash = new int[2000001];
for (int value: nums) {
value = value + 1000001;
if(hash[value] == 0) {
hash[value] ++;
} else {
return true;
}
}
return false;
}
}
以上是关于我用java刷 leetcode 217. 存在重复元素的主要内容,如果未能解决你的问题,请参考以下文章
⭐算法入门⭐《简单排序》简单01 —— LeetCode 217. 存在重复元素