博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
leetCode-Contains Duplicate
阅读量:5111 次
发布时间:2019-06-13

本文共 2142 字,大约阅读时间需要 7 分钟。

Description:

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.

My Solution:

class Solution {    public boolean containsDuplicate(int[] nums) {        Map
map = new HashMap
(); int len = nums.length; for(int i = 0;i < len;i++){ map.put(nums[i],(map.get(nums[i]) == null)?1:map.get(nums[i])+1); } for(Integer key : map.keySet()){ if(map.get(key) > 1){ return true; } } return false; }}

Better Solution 1:

//数组排序后判断相邻元素是否相等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;}

Better Solution2:

//用到set的contains和addpublic boolean containsDuplicate(int[] nums) {    Set
set = new HashSet<>(nums.length); for (int x: nums) { if (set.contains(x)) return true; set.add(x); } return false;}

Best Solution:

//先求出nums数组的最小值min和最大值max,然后新建boolean数组,下标为最小值到最大值之间的所有元素,遍历nums,如果一个元素j出现,将boolean数组(j - min)下标对应的值设置为true,如果下次遍历到j,那么返回trueclass Solution {    public boolean containsDuplicate(int[] nums) {        if (nums.length <= 1) return false;        int minNum = nums[0];        int maxNum = nums[0];        for (int num : nums) {            if (minNum > num) {                minNum = num;            }            if (maxNum < num) {                maxNum = num;            }        }        if (maxNum == minNum) return true;        boolean[] visit = new boolean[maxNum - minNum + 1];        for (int num : nums) {            int idx = num - minNum;            if (visit[idx]) {                return true;            } else {                visit[idx] = true;            }        }        return false;    } }

总结:一个还是要看元素排列的规律(排序后判断相邻元素是否相等的方法),还有就是数组元素出现次数这种问题一般都能设置一个以对应元素为下标的数组用来计算出现次数。

版权声明:本文为博主原创文章,未经博主允许不得转载。

转载于:https://www.cnblogs.com/kevincong/p/7887597.html

你可能感兴趣的文章
"远程桌面连接--“发生身份验证错误。要求的函数不受支持
查看>>
【BZOJ1565】 植物大战僵尸
查看>>
视频:"我是设计师"高清完整版Plus拍摄花絮
查看>>
VALSE2019总结(4)-主题报告
查看>>
浅谈 unix, linux, ios, android 区别和联系
查看>>
51nod 1428 活动安排问题 (贪心+优先队列)
查看>>
中国烧鹅系列:利用烧鹅自动执行SD卡上的自定义程序(含视频)
查看>>
Solaris11修改主机名
查看>>
latex for wordpress(一)
查看>>
如何在maven工程中加载oracle驱动
查看>>
Flask 系列之 SQLAlchemy
查看>>
aboutMe
查看>>
【Debug】IAR在线调试时报错,Warning: Stack pointer is setup to incorrect alignmentStack,芯片使用STM32F103ZET6...
查看>>
一句话说清分布式锁,进程锁,线程锁
查看>>
python常用函数
查看>>
FastDFS使用
查看>>
服务器解析请求的基本原理
查看>>
[HDU3683 Gomoku]
查看>>
【工具相关】iOS-Reveal的使用
查看>>
数据库3
查看>>