std::unordered_map
From cppreference.com
| Defined in header <unordered_map>
|
||
| template< class Key, |
(since C++11) | |
Unordered map is an associative container that contains key-value pairs with unique keys. Search, insertion, and removal have average constant-time complexity.
std::unordered_map meets the requirements of Container, AllocatorAwareContainer, UnorderedAssociativeContainer.
Contents |