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

template <class T, class Alloc>
void swap (forward_list<T,Alloc>& first, forward_list<T,Alloc>& second);

Parâmetros

  • first - Primeiro objeto forward_list.

  • second - Segundo objeto forward_list.

Valor de retorno

Nenhum

Exceções

Esta função nunca lança exceção.

Complexidade de tempo

Linear, ou seja, O (n)

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;

   swap(fl1, 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