Biblioteca C ++ Forward_list - función swap ()
Descripción
La función C ++ std::forward_list::swap()intercambia el contenido del primer forward_list con otro. Esta función cambia el tamaño de forward_list si es necesario.
Declaración
A continuación se muestra la declaración de la función std :: forward_list :: swap () del encabezado 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 - Primer objeto forward_list.
second - Segundo objeto forward_list.
Valor devuelto
Ninguna
Excepciones
Esta función nunca lanza una excepción.
Complejidad del tiempo
Lineal es decir O (n)
Ejemplo
El siguiente ejemplo muestra el uso de la función 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;
}
Compilemos y ejecutemos el programa anterior, esto producirá el siguiente 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