C++ Boost has Bimap container that is a bidirectional map: http://www.boost.org/doc/libs/1_43_0/libs/bimap/doc/html/index.html

Does anyone know the performance of Boost::bimap? I mean what's the time complexity of accessing an element in the map? Is it as quick as unordered_map access (which is O(1))?

Thanks!

link|improve this question

50% accept rate
1  
It depends on the collection type you're accessing through. Without the type definition it's impossible to say. In general I believe that the individual collection types have the same runtime complexities as their "standalone implementation" counterparts. – David Joyner Aug 8 '10 at 23:01
feedback

1 Answer

up vote 3 down vote accepted

AFAIK each different container of this library have different operation complexity relative to the implementation (like for the stl containers). For details necessary to make your choice, read : http://www.boost.org/doc/libs/1_43_0/libs/bimap/doc/html/boost_bimap/the_tutorial/controlling_collection_types.html

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.