Biblioteca de vetores C ++ - função swap ()
Descrição
A função C ++ std::vector::swap() troca o conteúdo de dois vetores.
Declaração
A seguir está a declaração para o cabeçalho da função std :: vector :: swap () std :: vector.
template <class T, class Alloc>
void swap (vector<T,Alloc>& v1, vector<T,Alloc>& v2);
Parâmetros
v1 - Primeiro recipiente de vetor.
v2 - Segundo recipiente de vetor.
Valor de retorno
Nenhum.
Exceções
Esta função nunca lança exceção.
Complexidade de tempo
Linear, isto é, O (1)
Exemplo
O exemplo a seguir mostra o uso da função std :: vector :: swap ().
#include <iostream>
#include <vector>
using namespace std;
int main(void) {
vector<int> v1 = {1, 2, 3, 4, 5};
vector<int> v2 = {10, 20, 30};
cout << "Contents of vector v1 before swap operation" << endl;
for (int i = 0; i < v1.size(); ++i)
cout << v1[i] << endl;
cout << "Contents of vector v2 before swap operation" << endl;
for (int i = 0; i < v2.size(); ++i)
cout << v2[i] << endl;
swap(v1, v2);
cout << "Contents of vector v1 after swap operation" << endl;
for (int i = 0; i < v1.size(); ++i)
cout << v1[i] << endl;
cout << "Contents of vector v2 after swap operation" << endl;
for (int i = 0; i < v2.size(); ++i)
cout << v2[i] << endl;
return 0;
}
Vamos compilar e executar o programa acima, isso produzirá o seguinte resultado -
Contents of vector v1 before swap operation
1
2
3
4
5
Contents of vector v2 befor swap operation
10
20
30
Contents of vector v1 after swap operation
10
20
30
Contents of vector v2 after swap operation
1
2
3
4
5