On this page
std::unordered_set<Key,Hash,KeyEqual,Allocator>::unordered_set
(1) | ||
|
(since C++11) (until C++20) |
|
|
(since C++20) | |
|
(2) | (since C++11) |
|
(3) | (since C++14) |
|
(4) | (since C++14) |
|
(5) | (since C++11) |
|
(6) | (since C++11) |
|
(7) | (since C++14) |
|
(8) | (since C++14) |
|
(9) | (since C++11) |
|
(10) | (since C++11) |
|
(11) | (since C++11) |
|
(12) | (since C++11) |
|
(13) | (since C++11) |
|
(14) | (since C++14) |
|
(15) | (since C++14) |
|
(16) | (since C++23) |
|
(17) | (since C++23) |
|
(18) | (since C++23) |
Constructs new container from a variety of data sources. Optionally uses user supplied bucket_count
as a minimal number of buckets to create, hash
as the hash function, equal
as the function to compare keys and alloc
as the allocator.
max_load_factor()
to 1.0
. For the default constructor, the number of buckets is implementation-defined.
[
first
,
last
)
. Sets max_load_factor()
to 1.0
. If multiple elements in the range have keys that compare equivalent, it is unspecified which element is inserted (pending LWG2844).
other
, copies the load factor, the predicate, and the hash function as well. If alloc
is not provided, allocator is obtained by calling std::allocator_traits<allocator_type>::select_on_container_copy_construction(other.get_allocator())
.
The template parameter |
(since C++23) |
other
using move semantics. If alloc
is not provided, allocator is obtained by move-construction from the allocator belonging to other
.
The template parameter |
(since C++23) |
init
, same as unordered_set(init.begin(), init.end())
.
rg
. If multiple elements in the range have keys that compare equivalent, it is unspecified which element is inserted (pending LWG2844).
Parameters
alloc | - | allocator to use for all memory allocations of this container |
bucket_count | - | minimal number of buckets to use on initialization. If it is not specified, implementation-defined default value is used |
hash | - | hash function to use |
equal | - | comparison function to use for all key comparisons of this container |
first, last | - | the range [ first , last ) to copy the elements from |
rg | - | a container compatible range, that is, an input_range whose elements are convertible to value_type |
other | - | another container to be used as source to initialize the elements of the container with |
init | - | initializer list to initialize the elements of the container with |
Type requirements | ||
-InputIt must meet the requirements of LegacyInputIterator. |
Complexity
std::distance(first, last)
), worst case quadratic, i.e. O(N2).
other
.
alloc
is given and alloc != other.get_allocator()
, then linear.
std::size(init)
), worst case O(N2).
ranges::distance(rg)
), worst case O(N2).
Exceptions
Calls to Allocator::allocate
may throw.
Notes
After container move construction (overload (4)), references, pointers, and iterators (other than the end iterator) toother
remain valid, but refer to elements that are now in *this
. The current standard makes this guarantee via the blanket statement in [container.reqmts]/67, and a more direct guarantee is under consideration via LWG issue 2321.
Although not formally required until C++23, some implementations have already put the template parameter Allocator
into non-deduced contexts in earlier modes.
Feature-test macro | Value | Std | Feature |
---|---|---|---|
__cpp_lib_containers_ranges |
202202L | (C++23) | Ranges-aware construction and insertion; overloads (16-18) |
Example
Defect reports
The following behavior-changing defect reports were applied retroactively to previously published C++ standards.
DR | Applied to | Behavior as published | Correct behavior |
---|---|---|---|
LWG 2193 | C++11 | the default constructor (1) was explicit | made non-explicit |
See also
assigns values to the container (public member function) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/container/unordered_set/unordered_set