<- Back
Comments (12)
- jll29google::dense_hash_map is faster than this new implementation according to their benchmark's diagram (google::dense_hash_map has the lowest runtime of all tested methods).
- teo_zeroThe concept is very similar to robin hood. In fact most of the performance charts show that the curves of hopscotch and robin hood are very close. I think I'd prefer robin hood as it's well known.
- mgaunardHow does it compare to boost unordered flat map?Looks like the benchmarks were last updated in 2019.