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'll preface this comment by saying that I understand how a hash table works however I'm not sure how I would go about implementing one from scratch using only primitives.

Would anyone be able to provide a Java code implementation of a hash table using only arrays?

How would I even start writing a hash table in Java?

How would I code a linked-list hash table again using only primitives?

Cheers!

share|improve this question
17  
Luke, use the source. – Matt Ball Apr 16 '12 at 13:59
6  
Have a look at the OpenJDK source code of java.util.HashMap‌​. Or the source code bundled with your JDK :-) – Péter Török Apr 16 '12 at 14:00
6  
If you understand how hash tables work, then presumably you can be a little more specific with your question. What, specifically, is the bit that you can't figure out? – Oli Charlesworth Apr 16 '12 at 14:00
2  
If you're coding a linked-list hash table you won't be using "only primitives" -- you'll have to create a helper Node<T> class for your linked list, at the very least. (The generic is optional). – trutheality Apr 16 '12 at 14:05
1  
If you don't understand how you would implement a hash table from scratch, then either you don't have the programming skills, or you don't really understand the data structure. Either way, I don't know how this question will help you. You are better of just trying to do it yourself. – Stephen C Apr 16 '12 at 14:14
show 2 more comments

closed as not constructive by Matt Ball, Kal, Philipp Reichart, Stephen C, CPerkins Apr 16 '12 at 14:43

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

The code given by the OpenJDK can be pretty hard to understand, so I'll write a short idea how to do it...

One way I did it recently was to use the array itself as a symbol table. The indices of the array will then be the keys (hash-keys) and the elements the value (whatever you want to store). Since arrays have a fixed size and hash-keys can be any integer we are faced with a challenge: to crop the hash-values so they are in the same range as the size of the array. If, say the array has a length of 5, the keys needs to be between 0 and 4. Otherwise we would place values into slots outside of the array => lots and lots of exceptions.

This challenge becomes especially fun when you'd like to avoid collisions...

A lot of help can be found on this page on princeton.

Good luck!

share|improve this answer