Libreria C ++ Unordered_map - funzione erase ()
Descrizione
La funzione C ++ std::unordered_map::erase()rimuove il valore mappato associato alla chiave k .
Dichiarazione
Di seguito è riportata la dichiarazione per la funzione std :: unordered_map :: erase () nell'intestazione std :: unordered_map.
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.
Complessità temporale
Costante cioè O (1)
Esempio
L'esempio seguente mostra l'utilizzo della funzione std :: unordered_map :: erase ().
#include <iostream>
#include <unordered_map>
using namespace std;
int main(void) {
unordered_map<char, int> um = {
{'a', 1},
{'b', 2},
{'c', 3},
{'d', 4},
{'e', 5}
};
cout << "Unordered map contains following elements before erase operation" << endl;
for (auto it = um.begin(); it != um.end(); ++it)
cout << it->first << " = " << it->second << endl;
um.erase('a');
cout << endl;
cout << "Unordered map contains following elements after erase operation" << endl;
for (auto it = um.begin(); it != um.end(); ++it)
cout << it->first << " = " << it->second << endl;
return 0;
}
Compiliamo ed eseguiamo il programma sopra, questo produrrà il seguente risultato:
Unordered map contains following elements before erase operation
e = 5
a = 1
b = 2
c = 3
d = 4
Unordered map contains following elements after erase operation
e = 5
b = 2
c = 3
d = 4