I have a few problems regarding a custom allocator for an unordered_map. I have a large dataset and I need to hash on a string as key. So I came to know that providing a custom memory allocator would optimize the speed. But how do I do that? (I checked SO but I could not find anything regarding the use of a custom allocator, although there are some stuff related to custom hash functions and so on)
Also what does unordered_map::size() return? It says its the longest controlled sequence. I was confused by what that means. Is it the number of buckets itself or is it something else?
Thanks a lot
unordered_mapis probably not the best choice. Try closed hashing with Google Sparsehash or MCT (documentation of the latter also contains advices on choosing the best hash table implementation depending on needs).size()just returns number of elements, as in any other container. – doublep Jul 16 '11 at 20:26