Skip to content

Latest commit

 

History

History
6 lines (5 loc) · 338 Bytes

README.md

File metadata and controls

6 lines (5 loc) · 338 Bytes

long-map

Completed the development of classes that implement the LongMap interface. They are a hash table (like a HashMap) with different storage strategies:

  • LongHashMap - records with the same hashes are stored in the singly linked list for every bucket.
  • LongOpenAddressingMap - all records are stored in the bucket array itself.