hash_set::hash_set
[!참고]
이 API는 사용되지 않습니다.대신 unordered_set Class.
생성 된 hash_set 즉 빈 즉 모든 복사본 또는 일부 다른 부분이 hash_set.
hash_set( );
explicit hash_set(
const Traits& _Comp
);
hash_set(
const Traits& _Comp,
const Allocator& _Al
);
hash_set(
const hash_set<Key, Traits, Allocator>& _Right
);
template<class InputIterator>
hash_set(
InputIterator _First,
InputIterator _Last
);
template<class InputIterator>
hash_set(
InputIterator _First,
InputIterator _Last,
const Traits& _Comp
);
template<class InputIterator>
hash_set(
InputIterator _First,
InputIterator _Last,
const Traits& _Comp,
const Allocator& _Al
);
hash_set(
hash_set&& _Right
);
매개 변수
Parameter |
설명 |
_Al |
저장소 할당자 클래스에 사용 될 hash_set 개체는 기본적으로 Allocator. |
_Comp |
종류의 비교 함수 const Traits 의 요소를 정렬 하는 데는 hash_set, 기본값은 hash_compare. |
_Right |
hash_set 는 생성 된 hash_set 복사본을 수 있습니다. |
_First |
복사할 요소의 범위에 있는 첫 번째 요소의 위치입니다. |
_Last |
복사할 요소의 범위를 벗어난 첫 번째 요소의 위치입니다. |
설명
메모리 저장소를 관리 하는 할당 기 개체 유형의 모든 생성자 저장 된 hash_set 및 나중에 반환할 호출 하 여 hash_set::get_allocator.할당자 매개 변수는 클래스 선언 및 전처리 매크로 대체 할당자를 대체 하는 데에 자주 생략 됩니다.
해당 hash_sets 모든 생성자를 초기화합니다.
모든 생성자 함수 개체의 형식 저장 Traits 주문 들의 키를 설정 하는 데 사용 된 hash_set 및 나중에 반환할 호출 하 여 hash_set::key_comp.에 대 한 자세한 내용은 Traits 참조 된 hash_set Class 항목.
다음 세 명의 생성자가 빈 초기 지정 hash_set, 둘째 종류의 비교 함수를 지정 (_Comp) 요소 및 세 번째 순서를 설정 하는 데 사용할 할당자를 지정 하는 명시적으로 입력 (_Al) 데.키 단어 explicit 자동 형식 변환을 특정 종류를 표시 하지 않습니다.
네 번째 생성자의 복사본을 지정 된 hash_set_Right.
마지막 세 가지 생성자는 범위를 복사 [_First, _Last)의 한 hash_set 비교 함수의 할당자 클래스 특성의 형식을 지정 하는 명시적인 증가.
마지막 생성기 이동 하 여 hash_set_Right.
에 있는 요소의 실제 순서는 hash_set 컨테이너 해시 함수에 따라 달라 집니다, 해시의 현재 크기 및 순서 지정 함수 테이블 및 집합 컨테이너, 정렬 함수에 의해 단독으로 결정 했습니다 위치 하 고 있을 때 일반적으로 예측할 수는 없습니다.
예제
// hash_set_hash_set.cpp
// compile with: /EHsc
#include <hash_set>
#include <iostream>
int main( )
{
using namespace std;
using namespace stdext;
hash_set <int>::iterator hs1_Iter, hs3_Iter, hs4_Iter,
hs5_Iter, hs6_Iter, hs7_Iter;
hash_set <int, hash_compare <int, greater<int> > >::iterator
hs2_Iter;
// Create an empty hash_set hs0 of key type integer
hash_set <int> hs0;
// Create an empty hash_set hs1 with the key comparison
// function of less than, then insert 4 elements
hash_set <int, hash_compare <int, less<int> > > hs1;
hs1.insert( 10 );
hs1.insert( 20 );
hs1.insert( 30 );
hs1.insert( 40 );
// Create an empty hash_set hs2 with the key comparison
// function of geater than, then insert 2 elements
hash_set <int, hash_compare <int, greater<int> > > hs2;
hs2.insert(10);
hs2.insert(20);
// Create a hash_set hs3 with the
// allocator of hash_set hs1
hash_set <int>::allocator_type hs1_Alloc;
hs1_Alloc = hs1.get_allocator( );
hash_set <int> hs3( hash_compare <int, less<int> >( ),
hs1_Alloc );
hs3.insert( 30 );
// Create a copy, hash_set hs4, of hash_set hs1
hash_set <int> hs4( hs1 );
// Create a hash_set hs5 by copying the range hs1[_First, _Last)
hash_set <int>::const_iterator hs1_bcIter, hs1_ecIter;
hs1_bcIter = hs1.begin( );
hs1_ecIter = hs1.begin( );
hs1_ecIter++;
hs1_ecIter++;
hash_set <int> hs5( hs1_bcIter, hs1_ecIter );
// Create a hash_set hs6 by copying the range hs4[_First, _Last)
// and with the allocator of hash_set hs2
hash_set <int>::allocator_type hs2_Alloc;
hs2_Alloc = hs2.get_allocator( );
hash_set <int> hs6( hs4.begin( ), ++hs4.begin( ),
less<int>( ), hs2_Alloc );
cout << "hs1 = ";
for ( hs1_Iter = hs1.begin( ); hs1_Iter != hs1.end( );
hs1_Iter++ )
cout << *hs1_Iter << " ";
cout << endl;
cout << "hs2 = " ;
for ( hs2_Iter = hs2.begin( ); hs2_Iter != hs2.end( );
hs2_Iter++ )
cout << *hs2_Iter << " ";
cout << endl;
cout << "hs3 = ";
for ( hs3_Iter = hs3.begin( ); hs3_Iter != hs3.end( );
hs3_Iter++ )
cout << *hs3_Iter << " ";
cout << endl;
cout << "hs4 = ";
for ( hs4_Iter = hs4.begin( ); hs4_Iter != hs4.end( );
hs4_Iter++ )
cout << *hs4_Iter << " ";
cout << endl;
cout << "hs5 = ";
for ( hs5_Iter = hs5.begin( ); hs5_Iter != hs5.end( );
hs5_Iter++ )
cout << *hs5_Iter << " ";
cout << endl;
cout << "hs6 = ";
for ( hs6_Iter = hs6.begin( ); hs6_Iter != hs6.end( );
hs6_Iter++ )
cout << *hs6_Iter << " ";
cout << endl;
// Create a copy, hash_set hs7, of hash_set hs1 by moving
hash_set <int, hash_compare <int, less<int> > >
hs7(move(hs1);
cout << "hs7 =";
for (hs7_Iter = hs7.begin(); hs7_Iter != hs7.end(); hs7_Iter++)
cout << " " << hs7_Iter -> second;
cout << endl;
}
Output
hs1 = 40 10 20 30
hs2 = 10 20
hs3 = 30
hs4 = 40 10 20 30
hs5 = 40 10
hs6 = 40
hs7 = 40 10 20 30
요구 사항
헤더: <hash_set>
네임 스페이스: stdext