Chapter 8
Associative Containers

Associative containers are objects that store other objects of a single type. They allow for the fast retrieval of data based on keys.

set<Key, Compare>

multiset<Key, Compare>

map<Key, T, Compare>

multimap<Key, T, Compare>