unordered_set
수업
클래스 템플릿은 형식 const Key
요소의 다양한 길이 시퀀스를 제어하는 개체를 설명합니다. 시퀀스는 해시 함수로 약하게 정렬됩니다. 즉, 시퀀스를 버킷이라고 하는 하위 시퀀스의 정렬된 집합으로 분할합니다. 각 버킷 내에서 비교 함수는 요소 쌍에 동일한 순서가 있는지 여부를 결정합니다. 각 요소는 정렬 키와 값으로 사용됩니다. 시퀀스는 최소한 모든 버킷이 대략 동일한 크기일 경우 시퀀스의 요소 수와 상관없이 작업 수를 사용하여 임의 요소를 조회, 삽입, 제거하는 방식으로 나타냅니다(일정 시간). 모든 요소가 하나의 버킷에 있는 최악의 경우에는 작업 수가 시퀀스의 요소 수에 비례합니다(선형 시간). 요소를 삽입하면 반복기가 무효화되지 않고 요소를 제거하면 제거된 요소를 가리키는 반복기만 무효화됩니다.
구문
template <
class Key,
class Hash = std::hash<Key>,
class Pred = std::equal_to<Key>,
class Alloc = std::allocator<Key>>
class unordered_set;
매개 변수
Key
키 형식입니다.
Hash
해시 함수 개체 형식입니다.
Pred
같음 비교 함수 개체 형식입니다.
Alloc
할당자 클래스입니다.
멤버
Typedef
속성 | 설명 |
---|---|
allocator_type |
스토리지 관리를 위한 할당자의 형식입니다. |
const_iterator |
제어되는 시퀀스에 대한 상수 반복기의 형식입니다. |
const_local_iterator |
제어되는 시퀀스에 대한 상수 버킷 반복기의 형식입니다. |
const_pointer |
요소에 대한 상수 포인터의 형식입니다. |
const_reference |
요소에 대한 상수 참조의 형식입니다. |
difference_type |
두 요소 사이의 부호가 있는 거리의 형식입니다. |
hasher |
해시 함수의 형식입니다. |
iterator |
제어되는 시퀀스에 대한 반복기의 형식입니다. |
key_equal |
비교 함수의 형식입니다. |
key_type |
정렬 키의 형식입니다. |
local_iterator |
제어되는 시퀀스에 대한 버킷 반복기의 형식입니다. |
pointer |
요소에 대한 포인터의 형식입니다. |
reference |
요소에 대한 참조의 형식입니다. |
size_type |
두 요소 사이의 부호가 없는 거리의 형식입니다. |
value_type |
요소의 형식입니다. |
함수
속성 | 설명 |
---|---|
begin |
제어되는 시퀀스의 시작을 지정합니다. |
bucket |
키 값에 대한 버킷 개수를 가져옵니다. |
bucket_count |
버킷 개수를 가져옵니다. |
bucket_size |
버킷의 크기를 가져옵니다. |
cbegin |
제어되는 시퀀스의 시작을 지정합니다. |
cend |
제어되는 시퀀스의 끝을 지정합니다. |
clear |
모든 요소를 제거합니다. |
contains C++20 |
에 지정된 키가 unordered_set 있는 요소가 있는지 확인합니다. |
count |
지정한 키와 일치하는 요소의 수를 찾습니다. |
emplace |
생성된 요소를 추가합니다. |
emplace_hint |
힌트와 함께 생성된 요소를 추가합니다. |
empty |
요소가 있는지 여부를 테스트합니다. |
end |
제어되는 시퀀스의 끝을 지정합니다. |
equal_range |
지정된 키와 일치하는 범위를 찾습니다. |
erase |
지정된 위치에 있는 요소를 제거합니다. |
find |
지정된 키와 일치하는 요소를 찾습니다. |
get_allocator |
저장된 할당자 개체를 가져옵니다. |
hash_function |
저장된 해시 함수 개체를 가져옵니다. |
insert |
요소를 추가합니다. |
key_eq |
저장된 비교 함수 개체를 가져옵니다. |
load_factor |
버킷당 평균 요소 수를 계산합니다. |
max_bucket_count |
최대 버킷 개수를 가져옵니다. |
max_load_factor |
버킷당 최대 요소 수를 가져오거나 설정합니다. |
max_size |
제어되는 시퀀스의 최대 크기를 가져옵니다. |
rehash |
해시 테이블을 다시 빌드합니다. |
size |
요소 수를 계산합니다. |
swap |
두 컨테이너의 내용을 바꿉니다. |
unordered_set |
컨테이너 개체를 만듭니다. |
연산자
속성 | 설명 |
---|---|
unordered_set::operator= |
해시 테이블을 복사합니다. |
설명
개체는 두 개의 저장된 개체, 형식의 비교 함수 개체 및 형식 unordered_set::key_equal
의 해시 함수 개체를 호출하여 제어하는 시퀀스를 정렬합니다 unordered_set::hasher
. 멤버 함수를 호출하여 첫 번째 저장된 개체에 액세스하고 멤버 함수 unordered_set::key_eq
()
를 호출하여 두 번째 저장된 개체에 unordered_set::hash_function
()
액세스합니다. 특히 X
형식의 모든 값 Y
및 Key
의 경우 두 인수 값이 순서 지정이 동일할 경우 호출 key_eq()(X, Y)
에서 true를 반환하며, 호출 hash_function()(keyval)
은 형식 size_t
의 값 분포를 생성합니다. 클래스 템플릿 unordered_multiset
클래스와 달리 형식 unordered_set
의 개체는 제어되는 시퀀스의 key_eq()(X, Y)
두 요소에 대해 항상 false임을 보장합니다. (키는 고유합니다.)
개체는 또한 최대 로드 비율(버킷당 최대 평균 요소 수를 원하는 대로 지정)를 저장합니다. 요소를 unordered_set::load_factor
()
삽입하면 최대 로드 인수를 초과하면 컨테이너가 버킷 수를 늘리고 필요에 따라 해시 테이블을 다시 작성합니다.
제어된 시퀀스의 실제 요소 순서는 해시 함수, 비교 함수, 삽입 순서, 최대 로드 비율, 현재 버킷 수에 따라 달라집니다. 일반적으로 제어되는 시퀀스의 요소 순서를 예측할 수는 없습니다. 하지만 동일하게 정렬된 요소의 하위 집합은 제어된 시퀀스에서 항상 인접해 있습니다.
개체는 형식 unordered_set::allocator_type
의 저장된 할당자 개체를 통해 제어하는 시퀀스에 대한 스토리지를 할당하고 해제합니다. 이러한 할당자 개체는 형식 allocator
의 개체와 동일한 외부 인터페이스를 가져야 합니다. 컨테이너 개체가 할당될 때 저장된 할당자 개체는 복사되지 않습니다.
unordered_set::allocator_type
스토리지 관리를 위한 할당자의 형식입니다.
typedef Alloc allocator_type;
설명
이 형식은 템플릿 매개 변수 Alloc
의 동의어입니다.
예시
// std__unordered_set__unordered_set_allocator_type.cpp
// compile with: /EHsc
#include <unordered_set>
#include <iostream>
typedef std::unordered_set<char> Myset;
typedef std::allocator<std::pair<const char, int> > Myalloc;
int main()
{
Myset c1;
Myset::allocator_type al = c1.get_allocator();
std::cout << "al == std::allocator() is "
<< std::boolalpha << (al == Myalloc()) << std::endl;
return (0);
}
al == std::allocator() is true
begin
제어되는 시퀀스 또는 버킷의 시작을 지정합니다.
iterator begin();
const_iterator begin() const;
local_iterator begin(size_type nbucket);
const_local_iterator begin(size_type nbucket) const;
매개 변수
nbucket
버킷 번호입니다.
설명
처음 두 개의 멤버 함수는 시퀀스의 첫 번째 요소(또는 빈 시퀀스의 끝 바로 다음)를 가리키는 정방향 반복기를 반환합니다. 마지막 두 개의 멤버 함수는 버킷 nbucket
의 첫 번째 요소(또는 빈 버킷의 끝 바로 다음)를 가리키는 정방향 반복기를 반환합니다.
예시
// unordered_set_begin.cpp
// compile using: cl.exe /EHsc /nologo /W4 /MTd
#include <unordered_set>
#include <iostream>
using namespace std;
typedef unordered_set<char> MySet;
int main()
{
MySet c1;
c1.insert('a');
c1.insert('b');
c1.insert('c');
// display contents using range-based for
for (auto it : c1) {
cout << "[" << it << "] ";
}
cout << endl;
// display contents using explicit for
for (MySet::const_iterator it = c1.begin(); it != c1.end(); ++it) {
cout << "[" << *it << "] ";
}
cout << std::endl;
// display first two items
MySet::iterator it2 = c1.begin();
cout << "[" << *it2 << "] ";
++it2;
cout << "[" << *it2 << "] ";
cout << endl;
// display bucket containing 'a'
MySet::const_local_iterator lit = c1.begin(c1.bucket('a'));
cout << "[" << *lit << "] ";
return (0);
}
[a] [b] [c]
[a] [b] [c]
[a] [b]
[a]
bucket
키 값에 대한 버킷 개수를 가져옵니다.
size_type bucket(const Key& keyval) const;
매개 변수
keyval
매핑할 키 값입니다.
설명
멤버 함수는 현재 키 값 keyval
에 해당하는 버킷 번호를 반환합니다.
예시
// std__unordered_set__unordered_set_bucket.cpp
// compile with: /EHsc
#include <unordered_set>
#include <iostream>
typedef std::unordered_set<char> Myset;
int main()
{
Myset c1;
c1.insert('a');
c1.insert('b');
c1.insert('c');
// display contents "[c] [b] [a] "
for (Myset::const_iterator it = c1.begin(); it != c1.end(); ++it)
std::cout << "[" << *it << "] ";
std::cout << std::endl;
// display buckets for keys
Myset::size_type bs = c1.bucket('a');
std::cout << "bucket('a') == " << bs << std::endl;
std::cout << "bucket_size(" << bs << ") == " << c1.bucket_size(bs)
<< std::endl;
return (0);
}
[c] [b] [a]
bucket('a') == 7
bucket_size(7) == 1
bucket_count
버킷 개수를 가져옵니다.
size_type bucket_count() const;
설명
멤버 함수는 현재 버킷 수를 반환합니다.
예시
// std__unordered_set__unordered_set_bucket_count.cpp
// compile with: /EHsc
#include <unordered_set>
#include <iostream>
typedef std::unordered_set<char> Myset;
int main()
{
Myset c1;
c1.insert('a');
c1.insert('b');
c1.insert('c');
// display contents "[c] [b] [a] "
for (Myset::const_iterator it = c1.begin(); it != c1.end(); ++it)
std::cout << "[" << *it << "] ";
std::cout << std::endl;
// inspect current parameters
std::cout << "bucket_count() == " << c1.bucket_count() << std::endl;
std::cout << "load_factor() == " << c1.load_factor() << std::endl;
std::cout << "max_bucket_count() == "
<< c1.max_bucket_count() << std::endl;
std::cout << "max_load_factor() == "
<< c1.max_load_factor() << std::endl;
std::cout << std::endl;
// change max_load_factor and redisplay
c1.max_load_factor(0.10f);
std::cout << "bucket_count() == " << c1.bucket_count() << std::endl;
std::cout << "load_factor() == " << c1.load_factor() << std::endl;
std::cout << "max_bucket_count() == "
<< c1.max_bucket_count() << std::endl;
std::cout << "max_load_factor() == "
<< c1.max_load_factor() << std::endl;
std::cout << std::endl;
// rehash and redisplay
c1.rehash(100);
std::cout << "bucket_count() == " << c1.bucket_count() << std::endl;
std::cout << "load_factor() == " << c1.load_factor() << std::endl;
std::cout << "max_bucket_count() == "
<< c1.max_bucket_count() << std::endl;
std::cout << "max_load_factor() == "
<< c1.max_load_factor() << std::endl;
std::cout << std::endl;
return (0);
}
[c] [b] [a]
bucket_count() == 8
load_factor() == 0.375
max_bucket_count() == 8
max_load_factor() == 4
bucket_count() == 8
load_factor() == 0.375
max_bucket_count() == 8
max_load_factor() == 0.1
bucket_count() == 128
load_factor() == 0.0234375
max_bucket_count() == 128
max_load_factor() == 0.1
bucket_size
버킷의 크기를 가져옵니다.
size_type bucket_size(size_type nbucket) const;
매개 변수
nbucket
버킷 번호입니다.
설명
멤버 함수는 버킷 번호 nbucket
의 크기를 반환합니다.
예시
// std__unordered_set__unordered_set_bucket_size.cpp
// compile with: /EHsc
#include <unordered_set>
#include <iostream>
typedef std::unordered_set<char> Myset;
int main()
{
Myset c1;
c1.insert('a');
c1.insert('b');
c1.insert('c');
// display contents "[c] [b] [a] "
for (Myset::const_iterator it = c1.begin(); it != c1.end(); ++it)
std::cout << "[" << *it << "] ";
std::cout << std::endl;
// display buckets for keys
Myset::size_type bs = c1.bucket('a');
std::cout << "bucket('a') == " << bs << std::endl;
std::cout << "bucket_size(" << bs << ") == " << c1.bucket_size(bs)
<< std::endl;
return (0);
}
[c] [b] [a]
bucket('a') == 7
bucket_size(7) == 1
cbegin
범위의 첫 번째 요소를 주소 지정하는 const
반복기를 반환합니다.
const_iterator cbegin() const;
Return Value
범위의 첫 번째 요소 또는 빈 범위의 끝 바로 다음 위치를 가리키는 const
정방향 액세스 반복기입니다(빈 범위의 경우 cbegin() == cend()
).
설명
반환 값을 cbegin
사용하면 범위의 요소를 수정할 수 없습니다.
begin()
멤버 함수 대신 이 멤버 함수를 사용하여 반환 값이 const_iterator
임을 보장할 수 있습니다. 일반적으로 다음 예제와 같이 형식 추론 키워드와 함께 auto
사용됩니다. 이 예제에서는 Container
가 begin()
및 cbegin()
를 지원하는 수정 가능(비const
)한 컨테이너로 가정합니다.
auto i1 = Container.begin();
// i1 isContainer<T>::iterator
auto i2 = Container.cbegin();
// i2 isContainer<T>::const_iterator
cend
범위에서 마지막 요소 바로 다음의 위치를 주소 지정하는 const
반복기를 반환합니다.
const_iterator cend() const;
Return Value
범위 끝의 바로 다음을 가리키는 const
정방향 액세스 반복기입니다.
설명
cend
는 반복기가 범위 끝을 통과했는지 여부를 테스트하는 데 사용됩니다.
end()
멤버 함수 대신 이 멤버 함수를 사용하여 반환 값이 const_iterator
임을 보장할 수 있습니다. 일반적으로 다음 예제와 같이 형식 추론 키워드와 함께 auto
사용됩니다. 이 예제에서는 Container
가 end()
및 cend()
를 지원하는 수정 가능(비const
)한 컨테이너로 가정합니다.
auto i1 = Container.end();
// i1 isContainer<T>::iterator
auto i2 = Container.cend();
// i2 isContainer<T>::const_iterator
반환된 cend
값은 역참조하면 안 됩니다.
clear
모든 요소를 제거합니다.
void clear();
설명
멤버 함수는 다음을 호출합니다unordered_set::erase( unordered_set::begin()
unordered_set::end())
. 자세한 내용은 unordered_set::erase
, unordered_set::begin
및 unordered_set::end
를 참조하세요.
예시
// std__unordered_set__unordered_set_clear.cpp
// compile with: /EHsc
#include <unordered_set>
#include <iostream>
typedef std::unordered_set<char> Myset;
int main()
{
Myset c1;
c1.insert('a');
c1.insert('b');
c1.insert('c');
// display contents "[c] [b] [a] "
for (Myset::const_iterator it = c1.begin(); it != c1.end(); ++it)
std::cout << "[" << *it << "] ";
std::cout << std::endl;
// clear the container and reinspect
c1.clear();
std::cout << "size == " << c1.size() << std::endl;
std::cout << "empty() == " << std::boolalpha << c1.empty() << std::endl;
std::cout << std::endl;
c1.insert('d');
c1.insert('e');
// display contents "[e] [d] "
for (Myset::const_iterator it = c1.begin(); it != c1.end(); ++it)
std::cout << "[" << *it << "] ";
std::cout << std::endl;
std::cout << "size == " << c1.size() << std::endl;
std::cout << "empty() == " << std::boolalpha << c1.empty() << std::endl;
return (0);
}
[c] [b] [a]
size == 0
empty() == true
[e] [d]
size == 2
empty() == false
const_iterator
제어되는 시퀀스에 대한 상수 반복기의 형식입니다.
typedef T1 const_iterator;
설명
이 형식은 제어되는 시퀀스의 상수 정방향 반복기로 사용될 수 있는 개체를 설명합니다. 구현 정의 형식 T1
의 동의어로 여기에 설명됩니다.
예시
// std__unordered_set__unordered_set_const_iterator.cpp
// compile with: /EHsc
#include <unordered_set>
#include <iostream>
typedef std::unordered_set<char> Myset;
int main()
{
Myset c1;
c1.insert('a');
c1.insert('b');
c1.insert('c');
// display contents "[c] [b] [a] "
for (Myset::const_iterator it = c1.begin(); it != c1.end(); ++it)
std::cout << "[" << *it << "] ";
std::cout << std::endl;
return (0);
}
[c] [b] [a]
const_local_iterator
제어되는 시퀀스에 대한 상수 버킷 반복기의 형식입니다.
typedef T5 const_local_iterator;
설명
형식은 버킷의 상수 정방향 반복기로 사용될 수 있는 개체를 설명합니다. 구현 정의 형식 T5
의 동의어로 여기에 설명됩니다.
예시
// std__unordered_set__unordered_set_const_local_iterator.cpp
// compile with: /EHsc
#include <unordered_set>
#include <iostream>
typedef std::unordered_set<char> Myset;
int main()
{
Myset c1;
c1.insert('a');
c1.insert('b');
c1.insert('c');
// display contents "[c] [b] [a] "
for (Myset::const_iterator it = c1.begin(); it != c1.end(); ++it)
std::cout << "[" << *it << "] ";
std::cout << std::endl;
// inspect bucket containing 'a'
Myset::const_local_iterator lit = c1.begin(c1.bucket('a'));
std::cout << "[" << *lit << "] ";
return (0);
}
[c] [b] [a]
[a]
const_pointer
요소에 대한 상수 포인터의 형식입니다.
typedef Alloc::const_pointer const_pointer;
설명
이 형식은 제어되는 시퀀스의 요소에 대한 상수 포인터로 사용될 수 있는 개체를 설명합니다.
예시
// std__unordered_set__unordered_set_const_pointer.cpp
// compile with: /EHsc
#include <unordered_set>
#include <iostream>
typedef std::unordered_set<char> Myset;
int main()
{
Myset c1;
c1.insert('a');
c1.insert('b');
c1.insert('c');
// display contents "[c] [b] [a] "
for (Myset::iterator it = c1.begin(); it != c1.end(); ++it)
{
Myset::const_pointer p = &*it;
std::cout << "[" << *p << "] ";
}
std::cout << std::endl;
return (0);
}
[c] [b] [a]
const_reference
요소에 대한 상수 참조의 형식입니다.
typedef Alloc::const_reference const_reference;
설명
이 형식은 제어되는 시퀀스의 요소에 대한 상수 참조로 사용될 수 있는 개체를 설명합니다.
예시
// std__unordered_set__unordered_set_const_reference.cpp
// compile with: /EHsc
#include <unordered_set>
#include <iostream>
typedef std::unordered_set<char> Myset;
int main()
{
Myset c1;
c1.insert('a');
c1.insert('b');
c1.insert('c');
// display contents "[c] [b] [a] "
for (Myset::iterator it = c1.begin(); it != c1.end(); ++it)
{
Myset::const_reference ref = *it;
std::cout << "[" << ref << "] ";
}
std::cout << std::endl;
return (0);
}
[c] [b] [a]
contains
에 지정된 키를 unordered_set
가진 요소가 있는지 확인합니다.
bool contains(const Key& key) const;
template<class K> bool contains(const K& key) const;
매개 변수
K
키의 형식입니다.
Key
찾을 요소의 키 값입니다.
Return Value
true
컨테이너에 요소가 있으면 이고, false
그렇지 않으면.
설명
contains()
는 C++20의 새로운 기능입니다. 이 옵션을 사용하려면 /std:c++20 이상 컴파일러 옵션을 지정합니다.
template<class K> bool contains(const K& key) const
투명할 경우 key_compare
오버로드 확인에만 참여합니다.
예시
// Requires /std:c++20 or /std:c++latest
#include <unordered_set>
#include <iostream>
int main()
{
std::unordered_set<int> theUnorderedSet = { 1, 2 };
std::cout << std::boolalpha; // so booleans show as 'true' or 'false'
std::cout << theUnorderedSet.contains(2) << '\n';
std::cout << theUnorderedSet.contains(3) << '\n';
return 0;
}
true
false
count
지정한 키와 일치하는 요소의 수를 찾습니다.
size_type count(const Key& keyval) const;
매개 변수
keyval
검색할 키 값입니다.
설명
멤버 함수는 로 구분된 unordered_set::equal_range
(keyval)
범위의 요소 수를 반환합니다.
예시
// std__unordered_set__unordered_set_count.cpp
// compile with: /EHsc
#include <unordered_set>
#include <iostream>
typedef std::unordered_set<char> Myset;
int main()
{
Myset c1;
c1.insert('a');
c1.insert('b');
c1.insert('c');
// display contents "[c] [b] [a] "
for (Myset::const_iterator it = c1.begin(); it != c1.end(); ++it)
std::cout << "[" << *it << "] ";
std::cout << std::endl;
std::cout << "count('A') == " << c1.count('A') << std::endl;
std::cout << "count('b') == " << c1.count('b') << std::endl;
std::cout << "count('C') == " << c1.count('C') << std::endl;
return (0);
}
[c] [b] [a]
count('A') == 0
count('b') == 1
count('C') == 0
difference_type
두 요소 사이의 부호가 있는 거리의 형식입니다.
typedef T3 difference_type;
설명
부호 있는 정수 형식은 제어되는 시퀀스에서 두 요소의 주소 간 차이점을 나타낼 수 있는 개체를 설명합니다. 구현 정의 형식 T3
의 동의어로 여기에 설명됩니다.
예시
// std__unordered_set__unordered_set_difference_type.cpp
// compile with: /EHsc
#include <unordered_set>
#include <iostream>
typedef std::unordered_set<char> Myset;
int main()
{
Myset c1;
c1.insert('a');
c1.insert('b');
c1.insert('c');
// display contents "[c] [b] [a] "
for (Myset::const_iterator it = c1.begin(); it != c1.end(); ++it)
std::cout << "[" << *it << "] ";
std::cout << std::endl;
// compute positive difference
Myset::difference_type diff = 0;
for (Myset::const_iterator it = c1.begin(); it != c1.end(); ++it)
++diff;
std::cout << "end()-begin() == " << diff << std::endl;
// compute negative difference
diff = 0;
for (Myset::const_iterator it = c1.end(); it != c1.begin(); --it)
--diff;
std::cout << "begin()-end() == " << diff << std::endl;
return (0);
}
[c] [b] [a]
end()-begin() == 3
begin()-end() == -3
emplace
생성된 요소를 제 위치에 삽입합니다. 복사 또는 이동 작업은 수행되지 않습니다.
template <class... Args>
pair<iterator, bool>
emplace(
Args&&... args);
매개 변수
args
값이 동등하게 정렬된 unordered_set
요소가 이미 포함되어 있지 않은 경우 삽입할 요소를 생성하기 위해 전달된 인수입니다.
Return Value
해당 bool
구성 요소가 삽입이 수행된 경우 true를 반환하고, 해당 키가 순서 내에서 동일한 값을 포함하는 요소가 unordered_set
에 이미 들어 있었던 경우에는 false를 반환하며, 해당 반복기 구성 요소는 새 요소가 삽입되었거나 요소가 이미 있었던 주소를 반환하는 pair
입니다.
이 구성원 함수가 반환하는 pr
쌍의 반복기 구성 요소에 액세스하려면 pr.first
를 사용하고 해당 구성 요소를 역참조하려면 *(pr.first)
를 사용합니다. 이 멤버 함수가 반환하는 pr
쌍의 bool
구성 요소에 액세스하려면 pr.second
.
설명
이 함수는 반복기나 참조를 무효화 되지 않습니다.
삽입하는 동안 예외가 throw되었지만 컨테이너의 해시 함수에서 발생하지 않는 경우 컨테이너는 수정되지 않습니다. 예외가 해시 함수에서 throw된 경우 결과는 정의되어 있지 않습니다.
코드 예제는 .를 참조하세요 set::emplace
.
emplace_hint
배치 힌트를 사용하여 생성된 요소를 제 위치에 삽입합니다. 복사 또는 이동 작업은 수행되지 않습니다.
template <class... Args>
iterator emplace_hint(
const_iteratorwhere,
Args&&... args);
매개 변수
args
해당 요소가 이미 포함되어 있지 않거나 키가 동등하게 정렬된 unordered_set
요소가 이미 포함되어 있지 않은 경우 unordered_set
삽입할 요소를 생성하기 위해 전달된 인수입니다.
where
올바른 삽입 지점 검색을 시작할 위치에 대한 힌트입니다.
Return Value
새로 삽입된 요소에 대한 반복기입니다.
요소가 이미 있어서 삽입이 실패하면 기존 요소에 대한 반복기가 반환됩니다.
설명
이 함수는 반복기나 참조를 무효화 되지 않습니다.
삽입하는 동안 예외가 throw되었지만 컨테이너의 해시 함수에서 발생하지 않는 경우 컨테이너는 수정되지 않습니다. 예외가 해시 함수에서 throw된 경우 결과는 정의되어 있지 않습니다.
코드 예제는 .를 참조하세요 set::emplace_hint
.
empty
요소가 있는지 여부를 테스트합니다.
bool empty() const;
설명
멤버 함수는 빈 제어되는 시퀀스에 대해 true를 반환합니다.
예시
// std__unordered_set__unordered_set_empty.cpp
// compile with: /EHsc
#include <unordered_set>
#include <iostream>
typedef std::unordered_set<char> Myset;
int main()
{
Myset c1;
c1.insert('a');
c1.insert('b');
c1.insert('c');
// display contents "[c] [b] [a] "
for (Myset::const_iterator it = c1.begin(); it != c1.end(); ++it)
std::cout << "[" << *it << "] ";
std::cout << std::endl;
// clear the container and reinspect
c1.clear();
std::cout << "size == " << c1.size() << std::endl;
std::cout << "empty() == " << std::boolalpha << c1.empty() << std::endl;
std::cout << std::endl;
c1.insert('d');
c1.insert('e');
// display contents "[e] [d] "
for (Myset::const_iterator it = c1.begin(); it != c1.end(); ++it)
std::cout << "[" << *it << "] ";
std::cout << std::endl;
std::cout << "size == " << c1.size() << std::endl;
std::cout << "empty() == " << std::boolalpha << c1.empty() << std::endl;
return (0);
}
[c] [b] [a]
size == 0
empty() == true
[e] [d]
size == 2
empty() == false
end
제어되는 시퀀스의 끝을 지정합니다.
iterator end();
const_iterator end() const;
local_iterator end(size_type nbucket);
const_local_iterator end(size_type nbucket) const;
매개 변수
nbucket
버킷 번호입니다.
설명
처음 두 멤버 함수는 시퀀스 끝의 바로 다음을 가리키는 정방향 반복기를 반환합니다. 마지막 두 멤버 함수는 nbucket
버킷 끝의 바로 다음을 가리키는 정방향 반복기를 반환합니다.
예시
// std__unordered_set__unordered_set_end.cpp
// compile with: /EHsc
#include <unordered_set>
#include <iostream>
typedef std::unordered_set<char> Myset;
int main()
{
Myset c1;
c1.insert('a');
c1.insert('b');
c1.insert('c');
// display contents "[c] [b] [a] "
for (Myset::const_iterator it = c1.begin(); it != c1.end(); ++it)
std::cout << "[" << *it << "] ";
std::cout << std::endl;
// inspect last two items "[a] [b] "
Myset::iterator it2 = c1.end();
--it2;
std::cout << "[" << *it2 << "] ";
--it2;
std::cout << "[" << *it2 << "] ";
std::cout << std::endl;
// inspect bucket containing 'a'
Myset::const_local_iterator lit = c1.end(c1.bucket('a'));
--lit;
std::cout << "[" << *lit << "] ";
return (0);
}
[c] [b] [a]
[a] [b]
[a]
equal_range
지정된 키와 일치하는 범위를 찾습니다.
std::pair<iterator, iterator>
equal_range(const Key& keyval);
std::pair<const_iterator, const_iterator>
equal_range(const Key& keyval) const;
매개 변수
keyval
검색할 키 값입니다.
설명
멤버 함수는 X
을 사용하여 동일하게 정렬된 제어되는 시퀀스의 요소만 [X.first, X.second)
로 구분되도록 한 쌍의 반복기 keyval
를 반환합니다. 이러한 요소가 없는 경우 두 반복기는 end()
입니다.
예시
// std__unordered_set__unordered_set_equal_range.cpp
// compile with: /EHsc
#include <unordered_set>
#include <iostream>
typedef std::unordered_set<char> Myset;
int main()
{
Myset c1;
c1.insert('a');
c1.insert('b');
c1.insert('c');
// display contents "[c] [b] [a] "
for (Myset::const_iterator it = c1.begin(); it != c1.end(); ++it)
std::cout << "[" << *it << "] ";
std::cout << std::endl;
// display results of failed search
std::pair<Myset::iterator, Myset::iterator> pair1 =
c1.equal_range('x');
std::cout << "equal_range('x'):";
for (; pair1.first != pair1.second; ++pair1.first)
std::cout << "[" << *pair1.first << "] ";
std::cout << std::endl;
// display results of successful search
pair1 = c1.equal_range('b');
std::cout << "equal_range('b'):";
for (; pair1.first != pair1.second; ++pair1.first)
std::cout << "[" << *pair1.first << "] ";
std::cout << std::endl;
return (0);
}
[c] [b] [a]
equal_range('x'):
equal_range('b'): [b]
erase
지정된 위치에서 unordered_set
의 요소 또는 요소의 범위를 제거하거나 지정된 키와 일치하는 요소를 제거합니다.
iterator erase(const_iterator Where);
iterator erase(const_iterator First, const_iterator Last);
size_type erase(const key_type& Key);
매개 변수
Where
제거할 요소의 위치입니다.
First
제거할 첫 번째 요소의 위치입니다.
Last
제거할 마지막 요소 바로 다음 위치입니다.
Key
제거할 요소의 키 값입니다.
Return Value
처음 두 멤버 함수의 경우 제거된 요소 이상으로 남아 있는 첫 번째 요소를 지정하는 양방향 반복기 또는 해당 요소가 없는 경우 끝 요소 unordered_set
입니다.
세 번째 멤버 함수의 unordered_set
경우 .
설명
코드 예제를 보려면 set::erase를 참조하세요.
find
지정된 키와 일치하는 요소를 찾습니다.
const_iterator find(const Key& keyval) const;
매개 변수
keyval
검색할 키 값입니다.
설명
멤버 함수는 unordered_set::equal_range
(keyval).first
를 반환합니다.
예시
// std__unordered_set__unordered_set_find.cpp
// compile with: /EHsc
#include <unordered_set>
#include <iostream>
typedef std::unordered_set<char> Myset;
int main()
{
Myset c1;
c1.insert('a');
c1.insert('b');
c1.insert('c');
// display contents "[c] [b] [a] "
for (Myset::const_iterator it = c1.begin(); it != c1.end(); ++it)
std::cout << "[" << *it << "] ";
std::cout << std::endl;
// try to find and fail
std::cout << "find('A') == "
<< std::boolalpha << (c1.find('A') != c1.end()) << std::endl;
// try to find and succeed
Myset::iterator it = c1.find('b');
std::cout << "find('b') == "
<< std::boolalpha << (it != c1.end())
<< ": [" << *it << "] " << std::endl;
return (0);
}
[c] [b] [a]
find('A') == false
find('b') == true: [b]
get_allocator
저장된 할당자 개체를 가져옵니다.
Alloc get_allocator() const;
설명
멤버 함수는 저장된 할당자 개체를 반환합니다.
예시
// std__unordered_set__unordered_set_get_allocator.cpp
// compile with: /EHsc
#include <unordered_set>
#include <iostream>
typedef std::unordered_set<char> Myset;
typedef std::allocator<std::pair<const char, int> > Myalloc;
int main()
{
Myset c1;
Myset::allocator_type al = c1.get_allocator();
std::cout << "al == std::allocator() is "
<< std::boolalpha << (al == Myalloc()) << std::endl;
return (0);
}
al == std::allocator() is true
hash_function
저장된 해시 함수 개체를 가져옵니다.
Hash hash_function() const;
설명
멤버 함수는 저장된 해시 함수 개체를 반환합니다.
예시
// std__unordered_set__unordered_set_hash_function.cpp
// compile with: /EHsc
#include <unordered_set>
#include <iostream>
typedef std::unordered_set<char> Myset;
int main()
{
Myset c1;
Myset::hasher hfn = c1.hash_function();
std::cout << "hfn('a') == " << hfn('a') << std::endl;
std::cout << "hfn('b') == " << hfn('b') << std::endl;
return (0);
}
hfn('a') == 1630279
hfn('b') == 1647086
hasher
해시 함수의 형식입니다.
typedef Hash hasher;
설명
이 형식은 템플릿 매개 변수 Hash
의 동의어입니다.
예시
// std__unordered_set__unordered_set_hasher.cpp
// compile with: /EHsc
#include <unordered_set>
#include <iostream>
typedef std::unordered_set<char> Myset;
int main()
{
Myset c1;
Myset::hasher hfn = c1.hash_function();
std::cout << "hfn('a') == " << hfn('a') << std::endl;
std::cout << "hfn('b') == " << hfn('b') << std::endl;
return (0);
}
hfn('a') == 1630279
hfn('b') == 1647086
insert
요소 또는 요소 범위를 에 삽입합니다 unordered_set
.
// (1) single element
pair<iterator, bool> insert(const value_type& Val);
// (2) single element, perfect forwarded
template <class ValTy>
pair<iterator, bool> insert(ValTy&& Val);
// (3) single element with hint
iterator insert(const_iterator Where, const value_type& Val);
// (4) single element, perfect forwarded, with hint
template <class ValTy>
iterator insert(const_iterator Where, ValTy&& Val);
// (5) range
template <class InputIterator>
void insert(InputIterator First, InputIterator Last);
// (6) initializer list
void insert(initializer_list<value_type> IList);
매개 변수
Val
키가 동등하게 정렬된 unordered_set
요소가 이미 포함되어 있지 않은 경우 삽입할 요소의 값입니다.
Where
올바른 삽입 지점 검색을 시작할 위치입니다.
ValTy
요소를 value_type
생성하는 데 사용할 수 있는 unordered_set
인수 형식을 지정하고 인수로 완벽한 전달을 지정하는 Val
템플릿 매개 변수입니다.
First
복사할 첫 번째 요소의 위치입니다.
Last
복사할 마지막 요소 바로 다음 위치입니다.
InputIterator
개체를 생성하는 value_type
데 사용할 수 있는 형식의 요소를 가리키는 입력 반복기의 요구 사항을 충족하는 템플릿 함수 인수입니다.
IList
initializer_list
요소를 복사할 원본입니다.
Return Value
단일 요소 멤버 함수((1) 및 (2)는 삽입이 이루어진 경우 해당 bool
구성 요소가 true이고 키가 순서에 해당하는 값을 가진 요소가 이미 포함된 경우 unordered_set
false를 반환 pair
합니다. 반환-값 쌍의 반복기 구성 요소는 구성 요소가 있는 경우 bool
새로 삽입된 요소를 가리키거나 구성 요소가 true
있는 경우 bool
기존 요소를 가리킵니다 false
.
single-element-with-hint 멤버 함수((3) 및 (4)는 새 요소가 삽입된 unordered_set
위치를 가리키는 반복기를 반환하거나, 해당하는 키가 있는 요소가 이미 있는 경우 기존 요소에 반환합니다.
설명
이 함수는 반복기, 포인터 또는 참조를 무효화하지 않습니다.
한 요소만 삽입하는 동안 예외가 throw되었지만 컨테이너의 해시 함수에서 발생하지 않는 경우 컨테이너의 상태는 수정되지 않습니다. 예외가 해시 함수에서 throw된 경우 결과는 정의되어 있지 않습니다. 여러 요소를 삽입하는 중 예외가 throw되면 컨테이너는 지정되지 않았으나 유효한 상태로 남아 있습니다.
단일 요소 멤버 함수에서 반환된 반복기 구성 요소 pair
pr
에 액세스하려면 ; 를 사용하여 pr.first
반환된 쌍*pr.first
내에서 반복기를 역참조하고 요소를 제공합니다. bool
구성 요소에 액세스하려면 pr.second
를 사용합니다. 예제는 이 문서 뒷부분에 있는 샘플 코드를 참조하세요.
value_type
컨테이너의 형식은 컨테이너에 속하는 typedef이며 집합 unordered_set<V>::value_type
의 경우 형식const V
입니다.
범위 멤버 함수(5)는 범위의 반복기에서 unordered_set
[First, Last)
주소가 지정된 각 요소에 해당하는 요소 값의 시퀀스를 삽입하므로 Last
삽입되지 않습니다. 컨테이너 멤버 함수 end()
는 컨테이너의 마지막 요소 바로 뒤에 있는 위치를 참조합니다. 예를 들어 s.insert(v.begin(), v.end());
문이 v
의 모든 요소를 s
에 삽입하려고 합니다. 범위에 고유 값이 있는 요소만 삽입됩니다. 중복 값은 무시됩니다. 어떤 요소가 거부되는지 관찰하려면 insert
의 단일 요소 버전을 사용합니다.
이니셜라이저 목록 멤버 함수(6)는 요소를 initializer_list
unordered_set
복사하는 데 사용합니다.
생성된 요소를 삽입하는 경우(즉, 복사 또는 이동 작업이 수행되지 않음) 참조 set::emplace
하세요 set::emplace_hint
.
코드 예제는 .를 참조하세요 set::insert
.
iterator
unordered_set 요소를 읽을 수 있는 상수 정방향 반복기를 제공하는 형식입니다.
typedef implementation-defined iterator;
예시
반복기를 선언하고 사용하는 방법에 대한 begin
예제는 예제를 참조하세요.
key_eq
저장된 비교 함수 개체를 가져옵니다.
Pred key_eq() const;
설명
멤버 함수는 저장된 비교 함수 개체를 반환합니다.
예시
// std__unordered_set__unordered_set_key_eq.cpp
// compile with: /EHsc
#include <unordered_set>
#include <iostream>
typedef std::unordered_set<char> Myset;
int main()
{
Myset c1;
Myset::key_equal cmpfn = c1.key_eq();
std::cout << "cmpfn('a', 'a') == "
<< std::boolalpha << cmpfn('a', 'a') << std::endl;
std::cout << "cmpfn('a', 'b') == "
<< std::boolalpha << cmpfn('a', 'b') << std::endl;
return (0);
}
cmpfn('a', 'a') == true
cmpfn('a', 'b') == false
key_equal
비교 함수의 형식입니다.
typedef Pred key_equal;
설명
이 형식은 템플릿 매개 변수 Pred
의 동의어입니다.
예시
// std__unordered_set__unordered_set_key_equal.cpp
// compile with: /EHsc
#include <unordered_set>
#include <iostream>
typedef std::unordered_set<char> Myset;
int main()
{
Myset c1;
Myset::key_equal cmpfn = c1.key_eq();
std::cout << "cmpfn('a', 'a') == "
<< std::boolalpha << cmpfn('a', 'a') << std::endl;
std::cout << "cmpfn('a', 'b') == "
<< std::boolalpha << cmpfn('a', 'b') << std::endl;
return (0);
}
cmpfn('a', 'a') == true
cmpfn('a', 'b') == false
key_type
정렬 키의 형식입니다.
typedef Key key_type;
설명
이 형식은 템플릿 매개 변수 Key
의 동의어입니다.
예시
// std__unordered_set__unordered_set_key_type.cpp
// compile with: /EHsc
#include <unordered_set>
#include <iostream>
typedef std::unordered_set<char> Myset;
int main()
{
Myset c1;
c1.insert('a');
c1.insert('b');
c1.insert('c');
// display contents "[c] [b] [a] "
for (Myset::const_iterator it = c1.begin(); it != c1.end(); ++it)
std::cout << "[" << *it << "] ";
std::cout << std::endl;
// add a value and reinspect
Myset::key_type key = 'd';
Myset::value_type val = key;
c1.insert(val);
for (Myset::const_iterator it = c1.begin(); it != c1.end(); ++it)
std::cout << "[" << *it << "] ";
std::cout << std::endl;
return (0);
}
[c] [b] [a]
[d] [c] [b] [a]
load_factor
버킷당 평균 요소 수를 계산합니다.
float load_factor() const;
설명
구성원 함수는 (float)
unordered_set::size() / (float)
unordered_set::bucket_count()
(버킷당 평균 요소 수)를 반환합니다.
예시
// std__unordered_set__unordered_set_load_factor.cpp
// compile with: /EHsc
#include <unordered_set>
#include <iostream>
typedef std::unordered_set<char> Myset;
int main()
{
Myset c1;
c1.insert('a');
c1.insert('b');
c1.insert('c');
// display contents "[c] [b] [a] "
for (Myset::const_iterator it = c1.begin(); it != c1.end(); ++it)
std::cout << "[" << *it << "] ";
std::cout << std::endl;
// inspect current parameters
std::cout << "bucket_count() == " << c1.bucket_count() << std::endl;
std::cout << "load_factor() == " << c1.load_factor() << std::endl;
std::cout << "max_bucket_count() == "
<< c1.max_bucket_count() << std::endl;
std::cout << "max_load_factor() == "
<< c1.max_load_factor() << std::endl;
std::cout << std::endl;
// change max_load_factor and redisplay
c1.max_load_factor(0.10f);
std::cout << "bucket_count() == " << c1.bucket_count() << std::endl;
std::cout << "load_factor() == " << c1.load_factor() << std::endl;
std::cout << "max_bucket_count() == "
<< c1.max_bucket_count() << std::endl;
std::cout << "max_load_factor() == "
<< c1.max_load_factor() << std::endl;
std::cout << std::endl;
// rehash and redisplay
c1.rehash(100);
std::cout << "bucket_count() == " << c1.bucket_count() << std::endl;
std::cout << "load_factor() == " << c1.load_factor() << std::endl;
std::cout << "max_bucket_count() == "
<< c1.max_bucket_count() << std::endl;
std::cout << "max_load_factor() == "
<< c1.max_load_factor() << std::endl;
std::cout << std::endl;
return (0);
}
[c] [b] [a]
bucket_count() == 8
load_factor() == 0.375
max_bucket_count() == 8
max_load_factor() == 4
bucket_count() == 8
load_factor() == 0.375
max_bucket_count() == 8
max_load_factor() == 0.1
bucket_count() == 128
load_factor() == 0.0234375
max_bucket_count() == 128
max_load_factor() == 0.1
local_iterator
버킷 반복기의 형식입니다.
typedef T4 local_iterator;
설명
형식은 버킷의 정방향 반복기로 사용될 수 있는 개체를 설명합니다. 구현 정의 형식 T4
의 동의어로 여기에 설명됩니다.
예시
// std__unordered_set__unordered_set_local_iterator.cpp
// compile with: /EHsc
#include <unordered_set>
#include <iostream>
typedef std::unordered_set<char> Myset;
int main()
{
Myset c1;
c1.insert('a');
c1.insert('b');
c1.insert('c');
// display contents "[c] [b] [a] "
for (Myset::const_iterator it = c1.begin(); it != c1.end(); ++it)
std::cout << "[" << *it << "] ";
std::cout << std::endl;
// inspect bucket containing 'a'
Myset::local_iterator lit = c1.begin(c1.bucket('a'));
std::cout << "[" << *lit << "] ";
return (0);
}
[c] [b] [a]
[a]
max_bucket_count
최대 버킷 개수를 가져옵니다.
size_type max_bucket_count() const;
설명
멤버 함수는 현재 허용된 최대 버킷 개수를 반환합니다.
예시
// std__unordered_set__unordered_set_max_bucket_count.cpp
// compile with: /EHsc
#include <unordered_set>
#include <iostream>
typedef std::unordered_set<char> Myset;
int main()
{
Myset c1;
c1.insert('a');
c1.insert('b');
c1.insert('c');
// display contents "[c] [b] [a] "
for (Myset::const_iterator it = c1.begin(); it != c1.end(); ++it)
std::cout << "[" << *it << "] ";
std::cout << std::endl;
// inspect current parameters
std::cout << "bucket_count() == " << c1.bucket_count() << std::endl;
std::cout << "load_factor() == " << c1.load_factor() << std::endl;
std::cout << "max_bucket_count() == "
<< c1.max_bucket_count() << std::endl;
std::cout << "max_load_factor() == "
<< c1.max_load_factor() << std::endl;
std::cout << std::endl;
// change max_load_factor and redisplay
c1.max_load_factor(0.10f);
std::cout << "bucket_count() == " << c1.bucket_count() << std::endl;
std::cout << "load_factor() == " << c1.load_factor() << std::endl;
std::cout << "max_bucket_count() == "
<< c1.max_bucket_count() << std::endl;
std::cout << "max_load_factor() == "
<< c1.max_load_factor() << std::endl;
std::cout << std::endl;
// rehash and redisplay
c1.rehash(100);
std::cout << "bucket_count() == " << c1.bucket_count() << std::endl;
std::cout << "load_factor() == " << c1.load_factor() << std::endl;
std::cout << "max_bucket_count() == "
<< c1.max_bucket_count() << std::endl;
std::cout << "max_load_factor() == "
<< c1.max_load_factor() << std::endl;
std::cout << std::endl;
return (0);
}
[c] [b] [a]
bucket_count() == 8
load_factor() == 0.375
max_bucket_count() == 8
max_load_factor() == 4
bucket_count() == 8
load_factor() == 0.375
max_bucket_count() == 8
max_load_factor() == 0.1
bucket_count() == 128
load_factor() == 0.0234375
max_bucket_count() == 128
max_load_factor() == 0.1
max_load_factor
버킷당 최대 요소 수를 가져오거나 설정합니다.
float max_load_factor() const;
void max_load_factor(float factor);
매개 변수
factor
새로운 최대 로드 비율입니다.
설명
첫 번째 멤버 함수는 저장된 최대 로드 비율을 반환합니다. 두 번째 멤버 함수는 저장된 최대 로드 비율을 factor
로 바꿉니다.
예시
// std__unordered_set__unordered_set_max_load_factor.cpp
// compile with: /EHsc
#include <unordered_set>
#include <iostream>
typedef std::unordered_set<char> Myset;
int main()
{
Myset c1;
c1.insert('a');
c1.insert('b');
c1.insert('c');
// display contents "[c] [b] [a] "
for (Myset::const_iterator it = c1.begin(); it != c1.end(); ++it)
std::cout << "[" << *it << "] ";
std::cout << std::endl;
// inspect current parameters
std::cout << "bucket_count() == " << c1.bucket_count() << std::endl;
std::cout << "load_factor() == " << c1.load_factor() << std::endl;
std::cout << "max_bucket_count() == "
<< c1.max_bucket_count() << std::endl;
std::cout << "max_load_factor() == "
<< c1.max_load_factor() << std::endl;
std::cout << std::endl;
// change max_load_factor and redisplay
c1.max_load_factor(0.10f);
std::cout << "bucket_count() == " << c1.bucket_count() << std::endl;
std::cout << "load_factor() == " << c1.load_factor() << std::endl;
std::cout << "max_bucket_count() == "
<< c1.max_bucket_count() << std::endl;
std::cout << "max_load_factor() == "
<< c1.max_load_factor() << std::endl;
std::cout << std::endl;
// rehash and redisplay
c1.rehash(100);
std::cout << "bucket_count() == " << c1.bucket_count() << std::endl;
std::cout << "load_factor() == " << c1.load_factor() << std::endl;
std::cout << "max_bucket_count() == "
<< c1.max_bucket_count() << std::endl;
std::cout << "max_load_factor() == "
<< c1.max_load_factor() << std::endl;
std::cout << std::endl;
return (0);
}
[c] [b] [a]
bucket_count() == 8
load_factor() == 0.375
max_bucket_count() == 8
max_load_factor() == 4
bucket_count() == 8
load_factor() == 0.375
max_bucket_count() == 8
max_load_factor() == 0.1
bucket_count() == 128
load_factor() == 0.0234375
max_bucket_count() == 128
max_load_factor() == 0.1
max_size
제어되는 시퀀스의 최대 크기를 가져옵니다.
size_type max_size() const;
설명
멤버 함수는 개체가 제어할 수 있는 가장 긴 시퀀스의 길이를 반환합니다.
예시
// std__unordered_set__unordered_set_max_size.cpp
// compile with: /EHsc
#include <unordered_set>
#include <iostream>
typedef std::unordered_set<char> Myset;
int main()
{
Myset c1;
std::cout << "max_size() == " << c1.max_size() << std::endl;
return (0);
}
max_size() == 4294967295
operator=
해시 테이블을 복사합니다.
unordered_set& operator=(const unordered_set& right);
unordered_set& operator=(unordered_set&& right);
매개 변수
right
에 unordered_set
복사되는 항목입니다 unordered_set
.
설명
unordered_set
는 operator=
에서 기존 요소를 지운 후에 right
의 내용을 unordered_set
로 복사하거나 이동합니다.
예시
// unordered_set_operator_as.cpp
// compile with: /EHsc
#include <unordered_set>
#include <iostream>
int main( )
{
using namespace std;
unordered_set<int> v1, v2, v3;
unordered_set<int>::iterator iter;
v1.insert(10);
cout << "v1 = " ;
for (iter = v1.begin(); iter != v1.end(); iter++)
cout << *iter << " ";
cout << endl;
v2 = v1;
cout << "v2 = ";
for (iter = v2.begin(); iter != v2.end(); iter++)
cout << *iter << " ";
cout << endl;
// move v1 into v2
v2.clear();
v2 = move(v1);
cout << "v2 = ";
for (iter = v2.begin(); iter != v2.end(); iter++)
cout << *iter << " ";
cout << endl;
}
pointer
요소에 대한 포인터의 형식입니다.
typedef Alloc::pointer pointer;
설명
이 형식은 제어되는 시퀀스의 요소에 대한 포인터로 사용될 수 있는 개체를 설명합니다.
예시
// std__unordered_set__unordered_set_pointer.cpp
// compile with: /EHsc
#include <unordered_set>
#include <iostream>
typedef std::unordered_set<char> Myset;
int main()
{
Myset c1;
c1.insert('a');
c1.insert('b');
c1.insert('c');
// display contents "[c] [b] [a] "
for (Myset::iterator it = c1.begin(); it != c1.end(); ++it)
{
Myset::key_type key = *it;
Myset::pointer p = &key;
std::cout << "[" << *p << "] ";
}
std::cout << std::endl;
return (0);
}
[c] [b] [a]
reference
요소에 대한 참조의 형식입니다.
typedef Alloc::reference reference;
설명
이 형식은 제어되는 시퀀스의 요소에 대한 참조로 사용될 수 있는 개체를 설명합니다.
예시
// std__unordered_set__unordered_set_reference.cpp
// compile with: /EHsc
#include <unordered_set>
#include <iostream>
typedef std::unordered_set<char> Myset;
int main()
{
Myset c1;
c1.insert('a');
c1.insert('b');
c1.insert('c');
// display contents "[c] [b] [a] "
for (Myset::iterator it = c1.begin(); it != c1.end(); ++it)
{
Myset::key_type key = *it;
Myset::reference ref = key;
std::cout << "[" << ref << "] ";
}
std::cout << std::endl;
return (0);
}
[c] [b] [a]
rehash
해시 테이블을 다시 빌드합니다.
void rehash(size_type nbuckets);
매개 변수
nbuckets
요청된 버킷 수입니다.
설명
멤버 함수는 필요에 따라 버킷 수를 nbuckets
이상으로 변경하고 해시 테이블을 다시 빌드합니다.
예시
// std__unordered_set__unordered_set_rehash.cpp
// compile with: /EHsc
#include <unordered_set>
#include <iostream>
typedef std::unordered_set<char> Myset;
int main()
{
Myset c1;
c1.insert('a');
c1.insert('b');
c1.insert('c');
// display contents "[c] [b] [a] "
for (Myset::const_iterator it = c1.begin(); it != c1.end(); ++it)
std::cout << "[" << *it << "] ";
std::cout << std::endl;
// inspect current parameters
std::cout << "bucket_count() == " << c1.bucket_count() << std::endl;
std::cout << "load_factor() == " << c1.load_factor() << std::endl;
std::cout << "max_load_factor() == " << c1.max_load_factor() << std::endl;
std::cout << std::endl;
// change max_load_factor and redisplay
c1.max_load_factor(0.10f);
std::cout << "bucket_count() == " << c1.bucket_count() << std::endl;
std::cout << "load_factor() == " << c1.load_factor() << std::endl;
std::cout << "max_load_factor() == " << c1.max_load_factor() << std::endl;
std::cout << std::endl;
// rehash and redisplay
c1.rehash(100);
std::cout << "bucket_count() == " << c1.bucket_count() << std::endl;
std::cout << "load_factor() == " << c1.load_factor() << std::endl;
std::cout << "max_load_factor() == " << c1.max_load_factor() << std::endl;
return (0);
}
[c] [b] [a]
bucket_count() == 8
load_factor() == 0.375
max_load_factor() == 4
bucket_count() == 8
load_factor() == 0.375
max_load_factor() == 0.1
bucket_count() == 128
load_factor() == 0.0234375
max_load_factor() == 0.1
size
요소 수를 계산합니다.
size_type size() const;
설명
멤버 함수는 제어되는 시퀀스의 길이를 반환합니다.
예시
// std__unordered_set__unordered_set_size.cpp
// compile with: /EHsc
#include <unordered_set>
#include <iostream>
typedef std::unordered_set<char> Myset;
int main()
{
Myset c1;
c1.insert('a');
c1.insert('b');
c1.insert('c');
// display contents "[c] [b] [a] "
for (Myset::const_iterator it = c1.begin(); it != c1.end(); ++it)
std::cout << "[" << *it << "] ";
std::cout << std::endl;
// clear the container and reinspect
c1.clear();
std::cout << "size == " << c1.size() << std::endl;
std::cout << "empty() == " << std::boolalpha << c1.empty() << std::endl;
std::cout << std::endl;
c1.insert('d');
c1.insert('e');
// display contents "[e] [d] "
for (Myset::const_iterator it = c1.begin(); it != c1.end(); ++it)
std::cout << "[" << *it << "] ";
std::cout << std::endl;
std::cout << "size == " << c1.size() << std::endl;
std::cout << "empty() == " << std::boolalpha << c1.empty() << std::endl;
return (0);
}
[c] [b] [a]
size == 0
empty() == true
[e] [d]
size == 2
empty() == false
size_type
두 요소 사이의 부호가 없는 거리의 형식입니다.
typedef T2 size_type;
설명
부호 없는 정수 형식은 제어되는 시퀀스의 길이를 나타낼 수 있는 개체를 설명합니다. 구현 정의 형식 T2
의 동의어로 여기에 설명됩니다.
예시
// std__unordered_set__unordered_set_size_type.cpp
// compile with: /EHsc
#include <unordered_set>
#include <iostream>
typedef std::unordered_set<char> Myset;
int main()
{
Myset c1;
Myset::size_type sz = c1.size();
std::cout << "size == " << sz << std::endl;
return (0);
}
size == 0
swap
두 컨테이너의 내용을 바꿉니다.
void swap(unordered_set& right);
매개 변수
right
교환할 컨테이너입니다.
설명
멤버 함수는 *this
와 right
간에 제어된 시퀀스를 교환합니다. 이 경우 상수 시간에 이 작업을 수행하면 unordered_set::get_allocator
() == right.get_allocator()
형식 Tr
의 저장된 특성 개체를 복사한 결과로만 예외가 throw되고 제어되는 두 시퀀스의 요소를 지정하는 참조, 포인터 또는 반복기가 무효화되지 않습니다. 그렇지 않으면 두 개의 제어되는 시퀀스에 있는 요소 수에 비례하여 많은 요소 할당 및 생성자 호출을 수행합니다.
예시
// std__unordered_set__unordered_set_swap.cpp
// compile with: /EHsc
#include <unordered_set>
#include <iostream>
typedef std::unordered_set<char> Myset;
int main()
{
Myset c1;
c1.insert('a');
c1.insert('b');
c1.insert('c');
// display contents "[c] [b] [a] "
for (Myset::const_iterator it = c1.begin(); it != c1.end(); ++it)
std::cout << "[" << *it << "] ";
std::cout << std::endl;
Myset c2;
c2.insert('d');
c2.insert('e');
c2.insert('f');
c1.swap(c2);
// display contents "[f] [e] [d] "
for (Myset::const_iterator it = c1.begin(); it != c1.end(); ++it)
std::cout << "[" << *it << "] ";
std::cout << std::endl;
swap(c1, c2);
// display contents "[c] [b] [a] "
for (Myset::const_iterator it = c1.begin(); it != c1.end(); ++it)
std::cout << "[" << *it << "] ";
std::cout << std::endl;
return (0);
}
[c] [b] [a]
[f] [e] [d]
[c] [b] [a]
unordered_set
컨테이너 개체를 만듭니다.
unordered_set(const unordered_set& Right);
explicit unordered_set(
size_typebucket_count = N0,
const Hash& Hash = Hash(),
const Comp& Comp = Comp(),
const Allocator& Al = Alloc());
unordered_set(unordered_set&& Right);
unordered_set(initializer_list<Type> IList);
unordered_set(initializer_list<Type> IList, size_typebucket_count);
unordered_set(
initializer_list<Type> IList,
size_typebucket_count,
const Hash& Hash);
unordered_set(
initializer_list<Type> IList,
size_typebucket_count,
const Hash& Hash,
const Comp& Comp);
unordered_set(
initializer_list<Type> IList,
size_typebucket_count,
const Hash& Hash,
const Comp& Comp,
const Allocator& Al);
template <class InputIterator>
unordered_set(
InputIteratorfirst,
InputIteratorlast,
size_typebucket_count = N0,
const Hash& Hash = Hash(),
const Comp& Comp = Comp(),
const Allocator& Al = Alloc());
매개 변수
InputIterator
반복기 형식입니다.
Al
저장할 할당자 개체입니다.
Comp
저장할 비교 함수 개체입니다.
Hash
저장할 해시 함수 개체입니다.
bucket_count
최소 버킷 수입니다.
Right
복사할 컨테이너입니다.
IList
initializer_list
복사할 요소가 들어 있는 항목입니다.
설명
첫 번째 생성자는 Right
에 의해 제어되는 시퀀스의 복사본을 지정합니다. 두 번째 생성자는 빈 제어 시퀀스를 지정합니다. 세 번째 생성자는 네 번째부터 여덟 번째 생성자를 이동하여 Right
시퀀스의 복사본을 initializer_list
지정합니다. 네 번째 생성자는 복사할 요소를 지정하는 데 사용됩니다. 아홉 번째 생성자는 [first, last)
요소 값의 시퀀스를 삽입합니다.
모든 생성자는 또한 여러 개의 저장된 값을 초기화합니다. 복사 생성자의 값은 Right
에서 가져옵니다. 그렇지 않은 경우:
버킷의 최소 수는 인수 bucket_count
입니다(있는 경우). 그렇지 않으면 구현 정의 값으로 여기에 설명된 기본값 N0
입니다.
해시 함수 개체는 인수 Hash
(있는 경우)이고, 그렇지 않으면 인수입니다 Hash()
.
비교 함수 개체는 인수 Comp
(있는 경우)이고, 그렇지 않으면 인수입니다 Comp()
.
할당자 개체는 인수 Al
(있는 경우)이고, 그렇지 않으면 인수입니다 Alloc()
.
value_type
요소의 형식입니다.
typedef Key value_type;
설명
형식은 제어되는 시퀀스의 요소를 설명합니다.
예제
// std__unordered_set__unordered_set_value_type.cpp
// compile with: /EHsc
#include <unordered_set>
#include <iostream>
typedef std::unordered_set<char> Myset;
int main()
{
Myset c1;
c1.insert('a');
c1.insert('b');
c1.insert('c');
// display contents "[c] [b] [a] "
for (Myset::const_iterator it = c1.begin(); it != c1.end(); ++it)
std::cout << "[" << *it << "] ";
std::cout << std::endl;
// add a value and reinspect
Myset::key_type key = 'd';
Myset::value_type val = key;
c1.insert(val);
for (Myset::const_iterator it = c1.begin(); it != c1.end(); ++it)
std::cout << "[" << *it << "] ";
std::cout << std::endl;
return (0);
}
[c] [b] [a]
[d] [c] [b] [a]