Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Does anyone know a good website for learning how to create and implement hash tables for beginners in java?

share|improve this question
more specifically how to make them tutorial – Antony Kelt Mar 21 '10 at 23:20

5 Answers

up vote 2 down vote accepted

I know you said "hashtable", but those are deprecated. Most people will advise you to use something else - like HashMap.

this is the normal starting point.

share|improve this answer
4  
I think this is a question about data structures, not about a specific Java class. – miorel Mar 21 '10 at 23:16
That's a tutorial on how to use them, not how to make them, no? – bmargulies Mar 21 '10 at 23:16
thanks anyway any information i can get will certainly help. But yes am looking for examples of how to make them – Antony Kelt Mar 21 '10 at 23:20

Take a look at the Wikipedia page and this tutorial.

share|improve this answer
1  
corrupt link :( – SinistraD Oct 17 '10 at 13:41

Why would you want to implement a hash table from scratch in Java, instead of using the standard collections, or Google Collections, or GNU Trove, or Apache Mahout Collections?

The best way to learn is to read the source of all of these.

And volume 3 of Knuth.

This is also helpful.

share|improve this answer
is what our teacher wants, i know is a pain, but i guess is the best way for learning – Antony Kelt Mar 21 '10 at 23:12
Reading the source of the Linux kernel isn't going to make me an OS programmer. Programming can't be learned without doing. – miorel Mar 21 '10 at 23:13
Doing without reading relevant examples doesn't make you a productive programmer. – bmargulies Mar 21 '10 at 23:15
Because an engineer at Amazon asked me how to implement a hashtable during an interview. – nickfox Apr 20 '11 at 0:40

This question cites a number of good books on data structures. If you're just starting out, one or two of these would be a good investment.

share|improve this answer

I know this is an old question but I am also trying to build a hashmap from scratch (preparing for google interview) and found none of the answers above helpful.

This site has a good tutorial on how to build one:

http://www.algolist.net/Data_structures/Hash_table/Simple_example This is a fixed value hashmap (makes assumptions on the initial size and not dynamically sized).

http://www.algolist.net/Data_structures/Hash_table/Open_addressing This is a dynamically addressable one. It's interesting to note how much more complex it gets.

Hope that helps.

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.