How to Create Own HashMap in Java?
Posted
by Taranfx
on Stack Overflow
See other posts from Stack Overflow
or by Taranfx
Published on 2010-03-07T17:40:09Z
Indexed on
2010/03/24
18:53 UTC
Read the original article
Hit count: 250
I know about hashing algorithm and hashCode()
to convert "key" into an equivalent integer (using some mathematically random expression) that is then compressed and stored into buckets.
But can someone point me to an implementation or at least data structure that should be used as baseline?
I haven't found it anywhere on the web.
© Stack Overflow or respective owner