Is there any faster version of std::map ? I heard there is a faster hashmap implementation, does boost have anything in this regard ?
On Thu, 13 Oct 2005, Piyush Kapadia wrote:
Is there any faster version of std::map ? I heard there is a faster hashmap implementation, does boost have anything in this regard ?
As far as I know, Boost does not offer any equivalent of hash_map, but
only hash functions. Many Standard Library implementations do provide a
hash_map. For instance, in libstdc++ (for g++), to use the hash_map, you
have to include
"François Duranleau"
On Thu, 13 Oct 2005, Piyush Kapadia wrote:
Is there any faster version of std::map ? I heard there is a faster hashmap implementation, does boost have anything in this regard ?
As far as I know, Boost does not offer any equivalent of hash_map, but only hash functions. Many Standard Library implementations do provide a
But, IIRC, boost.multi_index does provide for hashed indices. Jeff Flinn
participants (4)
-
François Duranleau
-
Jeff Flinn
-
Pavel Vozenilek
-
Piyush Kapadia