up vote 15 down vote favorite
6
share [g+] share [fb]

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.

link|improve this question

60% accept rate
feedback

10 Answers

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|improve this answer
2  
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
That answer will have to be updated for C++0x at some point – Alexandre Jasmin Jul 30 '10 at 14:50
feedback

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

link|improve this answer
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
feedback

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

link|improve this answer
feedback

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|improve this answer
feedback

Visual Studio has the class stdext::hash_map in the header <hash_map>, and gcc has the class __gnu_cxx::hash_map in the same header.

link|improve this answer
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 '09 at 15:31
I know, I know, this is deprecated stuff. Not every collegue may be convinced to switch to VS 2008 or install Boost. So here is a good trick on how to get these together: ` namespace std { #ifdef GNUC using namespace __gnu_cxx; #elif using namespace stdext; #endif }` – ypnos Mar 3 '10 at 15:50
feedback

See std::hash_map from SGI.

This is included in the STLPort distribution as well.

link|improve this answer
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
feedback

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|improve this answer
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 Dec 7 '09 at 19:04
feedback

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|improve this answer
feedback

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|improve this answer
feedback

std::hash_map

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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