Descrição
A função C ++ std::stack::swap() troca o conteúdo dos dois tamanhos e altera o tamanho da pilha, se necessário.
Declaração
A seguir está a declaração para o formulário de função std :: stack :: swap () std :: stack header.
C ++ 11
void swap (stack& x) noexcept;
Parâmetros
x - Outro objeto de pilha 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 :: stack :: swap ().
#include <iostream>
#include <stack>
using namespace std;
int main(void) {
stack<int> s1;
stack<int> s2;
for (int i = 0; i < 5; ++i)
s1.push(i + 1);
for (int i = 0; i < 3; ++i)
s2.push(100 + i);
s1.swap(s2);
cout << "Contents of stack s1 after swap operation" << endl;
while (!s1.empty()) {
cout << s1.top() << endl;
s1.pop();
}
cout << endl;
cout << "Contents of stack s2 after swap operation" << endl;
while (!s2.empty()) {
cout << s2.top() << endl;
s2.pop();
}
return 0;
}
Vamos compilar e executar o programa acima, isso produzirá o seguinte resultado -
Contents of stack s1 after swap operation
102
101
100
Contents of stack s2 after swap operation
5
4
3
2
1