Biblioteca de pila C ++ - función stack ()
Descripción
El constructor de movimientos de C ++ std::stack::stack() construye la pila con el contenido de otro utilizando la semántica de movimiento.
Declaración
A continuación se muestra la declaración del constructor std :: stack :: stack () del encabezado std :: stack.
C ++ 11
template <class Alloc>
stack (stack&& x, const Alloc& alloc);
Parámetros
x - Apilar objeto del mismo tipo.
alloc - Objeto asignador.
Valor devuelto
El constructor nunca devuelve valores.
Excepciones
Esta función miembro nunca lanza una excepción.
Complejidad del tiempo
Lineal, es decir, O (n)
Ejemplo
El siguiente ejemplo muestra el uso del constructor std :: stack :: stack ().
#include <iostream>
#include <stack>
using namespace std;
int main(void) {
stack<int> s1;
for (int i = 0; i < 5; ++i)
s1.push(i + 1);
cout << "Size of stack s1 before move operation = " << s1.size() << endl;
stack<int> s2(move(s1));
cout << "Size of stack s1 after move operation = " << s1.size() << endl;
cout << "Contents of stack s2" << endl;
while (!s2.empty()) {
cout << s2.top() << endl;
s2.pop();
}
return 0;
}
Compilemos y ejecutemos el programa anterior, esto producirá el siguiente resultado:
Size of stack s1 before move operation = 5
Size of stack s1 after move operation = 0
Contents of stack s2
5
4
3
2
1