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.

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..!

share|improve this question
1  
Is this homework? – Louis Wasserman Jul 11 '12 at 13:35

3 Answers

up vote 1 down vote accepted

The algorithm seems pretty straightforward:

  1. Construct a HashSet containing the elements of list A.
  2. Initialize min to be something large like Integer.MAX_VALUE.
  3. For each element in B, test if it's in the HashSet. If it is, and it's less than min, then update min.

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.

share|improve this answer
Thanks for your help. I should have asked the question more staright. I have written the algorithm in my question itself. But what I wanted to ask was How HashSet can insert elements in constant time. – Panesar Jul 13 '12 at 7:03

Finding the bucket is constant time - it only depends on the hash value of the given object, and not on the existing objects.

share|improve this answer
Thanks alot. I have searched in this direction. I assume direct address translation for the bucket id(hashcode) is the root solution for this. – Panesar Jul 13 '12 at 7:15

You can find the answer in any algorithm book (ex. Corman, Knuth). Shortly: bucketIndex = toPositiveInteger(hashcode()) % buckets.length

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.