Advertisement
davidcastrosalinas

20201030 Colas( Queue ) utillizando librería STL Queue y creación de clase Cola

Oct 30th, 2020
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.94 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4. #include <queue> //cola
  5.  
  6. template <class Tipo>
  7. class Cola : private queue<Tipo> {
  8. public:
  9.     Tipo extraer(){
  10.         Tipo valor = this->front();
  11.         this->pop();
  12.         return valor;
  13.     }
  14.  
  15.     void agregar(Tipo valor){
  16.         this->push(valor);
  17.     }
  18.  
  19.     bool vacia(){
  20.         return this->empty();
  21.     }
  22. };
  23.  
  24.  
  25. int main()
  26. {
  27.     //Utilizando librería STL
  28.     queue<int> cola;
  29.     cola.push(1);
  30.     cola.push(2);
  31.     cola.push(3);
  32.     cola.push(4);
  33.  
  34.     while(!cola.empty()){
  35.         cout << cola.front();
  36.         cola.pop();
  37.     }
  38.  
  39.     while(!cola.empty()){
  40.         cout << cola.front();
  41.         cola.pop();
  42.     }
  43.  
  44.     //Clase COLA Utilizando librería STL
  45.     Cola<int> miCola;
  46.     miCola.agregar(11);
  47.     miCola.agregar(12);
  48.     miCola.agregar(13);
  49.     miCola.agregar(14);
  50.  
  51.     while(!miCola.vacia())
  52.         cout << miCola.extraer()<<endl;
  53.  
  54.     return 0;
  55. }
  56.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement