unordered_set::erase
지정된 위치에 있는 요소를 제거합니다.
iterator erase(iterator where);
iterator erase(iterator first, iterator last);
size_type erase(const Key& keyval);
매개 변수
first
지울 범위의 시작 부분입니다.key
지울 키 값입니다.last
지울 범위 끝입니다.where
지울 요소
설명
가 가리키는 제어 되는 시퀀스의 요소를 제거 하는 첫 번째 멤버 함수 where.두 번째 멤버 함수는 범위에 있는 요소를 제거 [first, last).모두 제거, 모든 요소 외에 남은 첫 번째 요소를 지정 하는 반복기를 반환 또는 unordered_set::end() 이러한 요소가 존재 하는 경우.
로 구분 된 범위의 요소를 제거 하는 세 번째 구성 요소 unordered_set::equal_range(keyval).제거 된 요소 수를 반환 합니다.
멤버 함수가 예외를 throw 하지 않습니다.
예제
// std_tr1__unordered_set__unordered_set_erase.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;
// erase an element and reinspect
Myset::iterator it2 = c1.erase(c1.begin());
std::cout << "*erase(begin()) == [" << *it2 << "]";
std::cout << std::endl;
// add elements and display " [e] [d] [b] [a]"
c1.insert('d');
c1.insert('e');
for (Myset::const_iterator it = c1.begin();
it != c1.end(); ++it)
std::cout << " [" << *it << "]";
std::cout << std::endl;
// erase all but end;
it2 = c1.end();
it2 = c1.erase(c1.begin(), --it2);
std::cout << "*erase(begin(), end()-1) == ["
<< *it2 << "]" << std::endl;
std::cout << "size() == " << c1.size() << std::endl;
return (0);
}
요구 사항
헤더: <unordered_set>
네임 스페이스: 국방 표준