I'm trying to find an efficient C++ implementation of an hash table using open addressing. I've tried using https://github.com/sparsehash/sparsehash with no success.
In addition it would be a plus if : - the container would know that my hash method is guaranteed without collision. - the container had a constant-time method to access first free key.
Am I really looking for a hash table ? If yes, do you know such implementation ? If not, what would best suit my needs ?
Thx a lot, vob