Hashmap
Category:
vanilla
utility
data structure and algorithm
This project creates a HashMap class manually in JavaScript, which is a data structure that maps keys to values. It uses a hashing function to determine the index for storing key-value pairs in an array of linked lists. The HashMap dynamically resizes itself when the load factor exceeds a certain threshold, ensuring efficient operations.
Source code: https://github.com/gofhilman/hashmap