vote up 4 vote down star
1

Maps are great to get things done easily, but they are memory hogs and suffer from caching issues. And when you have a map in a critical loop that can be bad.

So I was wondering if anyone can recommend another container that has the same API but uses lets say a vector or hash implementation instead of a tree implementation. My goal here is to swap the containers and not have to rewrite all the user code that relies on the map.

Update: performance wise the best solution would be a tested map facade on a std::vector

flag

4 Answers

vote up 3 vote down check

See Loki::AssocVector and/or hash_map (most of STL implementations have this one).

link|flag
This is basically a sorted std::vector<std::pair<Key, T> > with map-like interface. The license is permissive enough to rip it out and stick into your project somewhere. – Greg Rogers Sep 24 '08 at 14:15
Sorry I hadn't came back to check the answer till now, but this is exactly what I needed! Thanks a perfect drop-in (considering the use cases I have) – Robert Gould Oct 17 '08 at 1:28
vote up 1 vote down

If your key is a simple type that can be very quickly compared and you have no more than a few thousands of entries, you could have better performance by simply putting your pairs in an std::vector and iterating to find your value.

link|flag
Ideally that would be the best solution, but I don't want to write up (and debug) the vector's interface/wrapper to be Map compatible. Do you know of any implementation of this technique? – Robert Gould Sep 24 '08 at 8:06
Unfortunately not. – Carl Seleborg Sep 24 '08 at 8:10
vote up 10 vote down

You can use std::tr1::unordered_map, which is already present in most STL implementations, and is part of the C++0x standard.

Here is it's current signature :

template <class Key,
          class T,
          class Hash = std::tr1::hash<Key>,
          class Pred = std::equal_to<Key>,
          class Alloc = std::allocator<std::pair<const Key, T> > >
class unordered_map;
link|flag
I haven't used std::tr1::unordered_map, but if it's anything like STLport's hash_map, I wouldn't be surprised if a typical implementation is an even bigger memory hog than std::map and has equally bad spatial locality. – bk1e Sep 25 '08 at 5:54
vote up 3 vote down

Maybe Google SparseHash could help you?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.