Which is more efficient? Are there any good benchmarks out?
feedback
|
|
C++0x's std::unordered_map specification is similar to boost::unordered_map which is based on tr1::unordered_map. That being said, there are some small differences. The addition of rvalue references in C++0x result in the addition of the emplace and emplace_hint functions that may be useful for performance. Of course, for now the C++0x is not yet published so you are better to use the boost version or the tr1 version if your compiler provides it. | |||||
|
feedback
|
|
In the c++0x latest standard draft n3225, there's a section 23.6.1 class template unordered_map. So it is already there. C++0x unordered_map is proposed based on boost one. Boost library itself also has a namespace tr1::unordered_map, which shares the implementation of its own boost::unordered_map. If you want to compare (of course you don't need to compare boost with boost), I think several other compilers, including microsoft visual studio 2010, and gcc, do have their own unordered_map implementation. You can use them by assuming they are under namespace tr1.
I didn't know any benchmark yet but I think at this early time, any benchmarking doesn't make sense because the compiler implementer will definitely optimize their own implementations when the real standard is finalized and more people are going to use the library. | |||||||||||
feedback
|
|
It depends on the implementation and the data set in question. When I was playing around with | |||
|
feedback
|
|
One minor point not yet mentioned, the This means that You can use (Reference: Item 6.18 in the Library Extension Technical Report Issues List.) | |||
|
feedback
|