vote up 7 vote down star
2

I usually use C++ STL map whenever I need to store some data associated with a specific type of value (a key value - e.g. a string or other object). The STL map implementation is based on trees which provides better performance (O(log n)) than the standard array or STL vector.

My questions is, do you know of any C++ "standard" hashtable implementation that provides even better performance (O(1))? Something similar to what is available in the Hashtable class from the Java API.

flag

60% accept rate

10 Answers

vote up 0 vote down

std::hash_map

link|flag
vote up 2 vote down

Have a look at this blog posting: Comparison of Hash Table Libraries.

link|flag
vote up 1 vote down

See std::hash_map from SGI.

This is included in the STLPort distribution as well.

link|flag
It may be included in STLPort, but it's still not "standard", as the question sought after. There is no standard class called hash_map; it's called unordered_map instead, and it's in TR1. – Chris Jester-Young Sep 25 '08 at 14:21
vote up 13 vote down

If you're using a C++ Standard Library with support for TR1 (e.g., GCC 4.0+, or Visual Studio 2008 SP1), then you have access to the <unordered_map> and <unordered_set> headers. These provide classes std::tr1::unordered_map and std::tr1::unordered_set.

Hope it helps!

Edit: I've downvoted all the std::hash_map answers; that's an SGI extension, not really part of the C++ standard. Use the TR1 facilities instead.

link|flag
In GCC, you have to use header names <tr1/unordered_map> and <tr1/unordered_set> instead. It's a GCC quirk. :-) – Chris Jester-Young Sep 25 '08 at 14:24
The VS2008 Feature Pack has been superseded by SP1. – Ferruccio Sep 25 '08 at 14:42
IIRC the VC9 Feature Pack and SP1 tr1::unordered_* implementations came wih release notes warninig of sub-optimal performance. I would assume that this will be fixed eventually. – jwfearn Sep 25 '08 at 15:22
Thanks, Ferruccio! I've incorporated your fix. (I apologise for misspelling your name in the edit comment, but I don't believe I now have a way to fix that.) – Chris Jester-Young Sep 25 '08 at 22:40
vote up 2 vote down

There is a hash_map object as many here have mentioned, but it is not part of the stl. It is a SGI extension, so if you were looking for something in the STL, I think you are out of luck.

link|flag
vote up 2 vote down

Visual Studio has the class stdext::hash_map in the header &lt;hash_map&gt;, and gcc has the class __gnu_cxx::hash_map in the same header.

link|flag
If they have the same interface, it's pretty easy to make an implementation that supports both of them using namespace aliases and some pre-processor work. – Jasper Bekkers Mar 25 at 15:31
vote up 1 vote down

hash_map is also supported in GNU's libstdc++.

Dinkumware also supports this, which means that lots of implementations will have a hash_map (I think even Visual C++ delivers with Dinkumware).

link|flag
It may be widely supported, but it's not "standard", as the questioner asked for. Only the TR1 facilities can be considered standard. – Chris Jester-Young Sep 25 '08 at 14:23
The point I was making is that if all the compiler vendors support it (or stdlibc++ vendors, as the case may be), then it may be a good enough substitute for "standard". BTW, TR1 isn't "standard" yet. It's accepted for the next standard, which is enough to get vendors to implement it (my point...) – Ben Collins Sep 25 '08 at 15:56
I think that's just for libstdc++ version >= 4.0? – rogerdpack yesterday
vote up 5 vote down

If you don't already have unordered_map or unordered_set, they are part of boost.
Here's the documentation for both.

link|flag
Yay for Boost providing maximal portability once again. :-) See stackoverflow.com/questions/131445 for another instance of this. – Chris Jester-Young Sep 25 '08 at 22:43
vote up 0 vote down

If you have the TR1 extensions available for yor compiler, use those. If not, boost.org has a version that's quite similar except for the std:: namespace. In that case, put in a using-declaration so you can switch to std:: later.

link|flag
vote up 1 vote down

std::tr1::unordered_map, in <unordered_map>

if you don't have tr1, get boost, and use boost::unordered_map in <boost/unordered_map.hpp>

link|flag

Your Answer

Get an OpenID
or

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