C ++ Map Library - funzione erase ()
Descrizione
La funzione C ++ std::multimap::erase()rimuove il valore mappato associato alla chiave k .
Dichiarazione
Di seguito è riportata la dichiarazione per la funzione std :: multimap :: erase () nel modulo std :: map header.
C ++ 98
size_type erase (const key_type& k);
C ++ 11
size_type erase (const key_type& k);
Parametri
k - Chiave dell'elemento da rimuovere.
Valore di ritorno
Restituisce il numero di elementi rimossi.
Eccezioni
Nessun effetto sul contenitore se viene generata un'eccezione.
Complessità temporale
Logaritmico ie O (log n)
Esempio
L'esempio seguente mostra l'utilizzo della funzione std :: multimap :: erase ().
#include <iostream>
#include <map>
using namespace std;
int main(void) {
/* Multimap with duplicates */
multimap<char, int> m {
{'a', 1},
{'a', 2},
{'b', 3},
{'c', 4},
{'c', 5},
};
size_t ret;
cout << "Multimap contains following elements before erase operation" << endl;
for (auto it = m.begin(); it != m.end(); ++it)
cout << it->first << " = " << it->second << endl;
cout << endl;
ret = m.erase('a');
cout << "Number of value removed are = " << ret << endl;
cout << endl;
cout << "Multimap contains following elements after erase operation" << endl;
for (auto it = m.begin(); it != m.end(); ++it)
cout << it->first << " = " << it->second << endl;
return 0;
}
Compiliamo ed eseguiamo il programma sopra, questo produrrà il seguente risultato:
Multimap contains following elements before erase operation
a = 1
a = 2
b = 3
c = 4
c = 5
Number of value removed are = 2
Multimap contains following elements after erase operation
b = 3
c = 4
c = 5