Does anyone know a good website for learning how to create and implement hash tables for beginners in java?
|
|
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. |
|||||||||
|
|
Take a look at the Wikipedia page and this tutorial. |
|||||
|
|
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. |
|||||||||
|
|
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. |
|||
|
|
|
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. |
|||
|
|