Overview
An Associative Container is a container with a variable size and where elements are inserted in a pre-defined order (such as sorted ascending).Section Pages
Map and multimap containers are containers that manage key/value pairs as elements.
Map and multimap containers are containers that manage key/value pairs as elements.
A set is an associative container data structure which contains a sorted set of unique objects.
A multiset is an associative container with the same properties as a set,but allowing storage of duplicate keys.
Hash map helps to manage a sequence of elements as a hash table
Hash multimap is a hash map that can contain multiple for a same key
Hash set is a set that uses a hash table to provide faster searching functionnality
Hash multiset is a hash set that can contain multiple identical values