Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 637 Bytes

README.md

File metadata and controls

9 lines (7 loc) · 637 Bytes

hash-maps-cpp

C++ ci

hash-maps-cpp is a project looking at ways of resolving collisions in hash maps. The aim of the project is to compare the worst-case scenario for inserting, removing and looking up operations. Current implementation compares three different ways of resolving collisions: separate chaining based on linked list, open addressing based on double hashing and robin hood hashing.