henrylin03 / odin-hashmap

Implement hashmap data structure using vanilla JavaScript (Node) as part of The Odin Project's "Full Stack JavaScript" course.
MIT License
0 stars 0 forks source link

setup linked list structure for the values of the hashmap #3

Closed henrylin03 closed 3 months ago

henrylin03 commented 3 months ago

this is to enable the setting of values, based on keys, into a linked list data structure to manage collisions (where two different keys generate the same hash code, causing them to land in the same bucket)