I have two lists. I want to find the smallest common number in the two. I thought of using HashSet as it doesn't allow duplicates. I can find out the common numbers while adding both list elements to it. And HashSet takes only constant time for insertion. This can give me O(n) to find the smallest common of two. But how can HashSet insert n elements in constant time? In this case to add the last element it takes O(n) time because to find the right bucket it has to compare hashcode with n buckets in the worst case. Please correct this and Thanks in advance..!
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|||||
|
|
The algorithm seems pretty straightforward:
In any event, hashing algorithms more or less always make the assumption that the hash is, in fact, a good hash function, and you don't worry about the O(n) worst case. |
|||
|
|
Finding the bucket is constant time - it only depends on the hash value of the given object, and not on the existing objects. |
|||
|
|
You can find the answer in any algorithm book (ex. Corman, Knuth). Shortly: bucketIndex = toPositiveInteger(hashcode()) % buckets.length |
|||
|
|