Libreria C ++ Unordered_map - Funzione swap ()

Descrizione

La funzione C ++ std::unordered_map::swap() scambia il contenuto di first unordered_map con un altro.

Dichiarazione

Di seguito è riportata la dichiarazione per l'intestazione std :: unordered_map :: swap () della funzione std :: unordered_map.

C ++ 11

template <class Key, class T, class Hash, class Pred, class Alloc>
void swap( unordered_map<Key,T,Hash,Pred,Alloc>& first,
           unordered_map<Key,T,Hash,Pred,Alloc>& second);

Parametri

  • first - Primo oggetto unordered_map.

  • second - Secondo oggetto unordered_map dello stesso tipo.

Valore di ritorno

Nessuna

Complessità temporale

Costante cioè O (1)

Esempio

L'esempio seguente mostra l'utilizzo della funzione std :: unordered_map :: swap ().

#include <iostream>
#include <unordered_map>

using namespace std;

int main(void) {
   unordered_map<char, int> um1 = {
         {'a', 1},
         {'b', 2},
         {'c', 3},
         {'d', 4},
         {'e', 5}
         };

   unordered_map<char, int> um2;

   swap(um1, um2);

   cout << "Unordered map contains following elements" << endl;

   for (auto it = um2.begin(); it != um2.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
e = 5
a = 1
b = 2
c = 3
d = 4