Biblioteca C ++ Forward_list - função swap ()
Descrição
A função C ++ std::forward_list::swap()troca o conteúdo da primeira forward_list por outra. Esta função muda o tamanho de forward_list se necessário.
Declaração
A seguir está a declaração para a função std :: forward_list :: swap () do cabeçalho std :: forward_list.
C ++ 11
void swap (forward_list& other);
Parâmetros
other - Outro objeto forward_list do mesmo tipo.
Valor de retorno
Nenhum
Exceções
Esta função de membro nunca lança exceção.
Complexidade de tempo
Constante, ou seja, O (1)
Exemplo
O exemplo a seguir mostra o uso da função std :: forward_list :: swap ().
#include <iostream>
#include <forward_list>
using namespace std;
int main(void) {
forward_list<int> fl1 = {1, 2, 3, 4, 5};;
forward_list<int> fl2 = {10, 20, 30};
cout << "List fl1 contents before swap operation" << endl;
for (auto it = fl1.begin(); it != fl1.end(); ++it)
cout << *it << endl;
cout << "List fl2 contents before swap operation" << endl;
for (auto it = fl2.begin(); it != fl2.end(); ++it)
cout << *it << endl;
fl1.swap(fl2);
cout << endl;
cout << "List fl1 contents after swap operation" << endl;
for (auto it = fl1.begin(); it != fl1.end(); ++it)
cout << *it << endl;
cout << "List fl2 contents after swap operation" << endl;
for (auto it = fl2.begin(); it != fl2.end(); ++it)
cout << *it << endl;
return 0;
}
Vamos compilar e executar o programa acima, isso produzirá o seguinte resultado -
List fl1 contents before swap operation
1
2
3
4
5
List fl2 contents before swap operation
10
20
30
List fl1 contents after swap operation
10
20
30
List fl2 contents after swap operation
1
2
3
4
5