本文主要是介绍leetcode217~Contains Duplicate,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
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.
比较简单,可以暴力求解,时间复杂度O(n^2)
也可以先排序再比较,时间复杂度O(nlogn)
使用集合,时间复杂度O(n)
public class ContainsDuplicate {public boolean containsDuplicate(int[] nums) {if(nums==null || nums.length==0) return false;Set<Integer> set = new HashSet<Integer>();for(int i=0;i<nums.length;i++) {if(!set.add(nums[i])) {return true;}}return false;}
}
这篇关于leetcode217~Contains Duplicate的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!