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!
java.util.HashMap. Or the source code bundled with your JDK :-) – Péter Török Apr 16 '12 at 14:00Node<T>class for your linked list, at the very least. (The generic is optional). – trutheality Apr 16 '12 at 14:05