June 2025
Intermediate to advanced
1093 pages
33h 24m
English
In this section, Cont or C stands for one of the container types and cont for an instance of it. As key type I use Key or K, as target type Target or T, and the value type pair<K,T> is Value or V. Iterator types are abbreviated as It.
|
Container |
Description |
|---|---|
|
unordered_set |
Contains a unique set of elements |
|
unordered_map |
Unique keys refer to a target value |
|
unordered_multiset |
Is a set of elements that can occur multiple times |
|
unordered_multimap |
Keys can occur multiple times |
Table 24.8 Profile: The associative unordered containers.
These containers do not store their keys sorted, but hash them. This has two effects: first, the elements are not in a specific order when ...
Read now
Unlock full access