Container similar to Android's ArrayMap in C++ -
android provides associative container named arraymap, implemented 2 simple arrays.
this container supposed slower other data structures, when inserting data, memory-efficient.
is there such thing implemented in c++?
boost's flat_map , eastl's vector_map seem analogues of arraymap.
Comments
Post a Comment