217. Contains Duplicate
problem 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.
Example 1:
Example 2:
Example 3:
algorithm thought
判断是否有重复数组,O(n)的解法就是使用一个hash table保存之前出现的值,如果出现重复的,就return。
还有一种方法是我做完O(n)解法之后,发现有人用O(nlgn)的排序解法做出来的,竟然还快一点。首先排序数组,然后判断连续的index是否有重复的数字。
唯一可能的解释,排序算法比O(n)算法快的理由就是,n不大,lgn小于O(n)解法前面的系数。
code
algorithm analysis
对于O(n)的算法,开始定义set的时候,要给他分配n的空间。因为STL里的alloc是动态递增空间的。如果空间不够,会重新开辟空间。所以提前分配好n的空间,能减少算法运行的时间和空间。
Last updated