public member function
<unordered_set>

std::unordered_multiset::erase

by position (1)
iterator erase ( const_iterator position );
by key (2)
size_type erase ( const key_type& k );
range (3)
iterator erase ( const_iterator first, const_iterator last );
Erase elements
Removes from the unordered_multiset container either the elements whose value is k or a range of elements ([first,last)).

This effectively reduces the container size by the number of elements removed, calling each element's destructor.

引數

position
Iterator pointing to a single element to be removed from the unordered_multiset.
成員型別const_iterator是一個 forward iterator 型別。
k
Value of the elements to be erased.
成員型別key_typeis the type of the elements in the container. In unordered_multiset containers it is the same asvalue_type相同,定義為類模板引數的別名().
first, last
Iterators specifying a range within the unordered_multiset container to be removed[first,last). i.e., the range includes all the elements between first and last, including the element pointed by first but not the one pointed by last.
Notice that unordered_multiset containers do not follow any particular order to organize its elements, therefore the effect of range deletions may not be easily predictable.
成員型別const_iterator是一個 forward iterator 型別。

返回值

Versions (1) and (3) return an iterator pointing to the position immediately following the last of the elements erased.
Version (2) returns the number of elements erased.

成員型別iterator是一個 forward iterator 型別。
成員型別size_type是一種無符號整型型別。

unordered_multiset 中的所有迭代器都對元素具有 const 訪問許可權:可以插入或移除元素,但在容器中不能修改它們。

示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// unordered_multiset::erase
#include <iostream>
#include <string>
#include <unordered_set>

int main ()
{
  std::unordered_multiset<std::string> myums =
  {"fish","duck","cow","cow","pig","hen","sheep"};

  myums.erase ( myums.begin() );                    // erasing by iterator
  myums.erase ( "sheep" );                          // erasing by key
  myums.erase ( myums.find("fish"), myums.end() );  // erasing by range

  std::cout << "myums contains:";
  for ( const std::string& x: myums ) std::cout << " " << x;
  std::cout << std::endl;

  return 0;
}
可能的輸出
myums contains: pig cow cow


複雜度

Average case: Linear in the number of elements removed (which is constant for versions (1) and (2)).
Worst case: Linear in the container size.

迭代器有效性

Only the iterators and references to the elements removed are invalidated.
The rest are unaffected.
The relative order of iteration of equivalent elements not removed by the operation is preserved.
The relative order of iteration of the elements not removed by the operation is preserved.

另見