hashmap
Implementation of open addressing hash table algorithms in C++.
Most of the code is under development, but the main() function in main.cc should provide enough information as to how to use the algorithms.
Implemented same lookup conditions in the Remove() method for the backshift Robin Hood as in the Get(), to prevent a useless iteration over the entire bucket array in case the key is missing.
1717425
Various open addressing hashmap algorithms in C++