
std:: unordered_map - cppreference.com
Apr 26, 2025 · std::unordered_map is an associative container that contains key-value pairs with unique keys. Search, insertion, and removal of elements have average constant-time complexity.
std:: unordered_set - cppreference.com
Apr 26, 2025 · std::unordered_set is an associative container that contains a set of unique objects of type Key. Search, insertion, and removal have average constant-time complexity.
std::unordered_map<Key,T,Hash,KeyEqual,Allocator>::
Nov 29, 2021 · std::unordered_map<Key,T,Hash,KeyEqual,Allocator>:: unordered_map C++ Containers library std::unordered_map
std::unordered_map<Key,T,Hash,KeyEqual,Allocator>:: find
Dec 4, 2021 · (C++20) unordered_map::equal_range Bucket interface unordered_map::begin(size_type)unordered_map::cbegin(size_type) …
std::unordered_set<Key,Hash,KeyEqual,Allocator>:: unordered_set
Nov 21, 2021 · unordered_set(std::initializer_list<value_type> init, size_type bucket_count, const Allocator & alloc ) : unordered_set ( init, bucket_count, Hash(), key_equal(), alloc){} (14) (since …
std::unordered_set<Key,Hash,KeyEqual,Allocator>::
Nov 29, 2021 · std::unordered_set<Key,Hash,KeyEqual,Allocator>:: find < cpp | container | unordered set C++ ... Containers library
std::unordered_set<Key,Hash,KeyEqual,Allocator>:: insert
May 9, 2025 · The value_type must be EmplaceConstructible into unordered_set from std::forward<K>(obj). This overload participates in overload resolution only if Hash and …
Standard library header <unordered_set> (C++11) - Reference
Nov 27, 2023 · Classes unordered_set (C++11) collection of unique keys, hashed by keys (class template) [edit] unordered_multiset (C++11) collection of keys, hashed by keys (class …
std::unordered_map<Key,T,Hash,KeyEqual,Allocator>:: erase
Dec 4, 2021 · #include <unordered_map>#include <iostream>int(){std::unordered_map<intstd::string>={{1"one"}{2"two"}{3"three"}{4"four"}{5"five"}{6"six"}};// …
std::unordered_map<Key,T,Hash,KeyEqual,Allocator>:: emplace
Dec 4, 2021 · (C++17) unordered_map::insert unordered_map::insert_range (C++23) unordered_map::insert_or_assign (C++17) unordered_map::emplace …