La tarea es implementar algunas funciones importantes de la pila como pop(), push(), display(), topElement(), isEmpty(), isFull() usando la plantilla de clase en C++. Stack es una estructura de datos lineal que sigue un orden particular en el que se realizan las operaciones. El orden puede ser LIFO (Last In First Out) o FILO (First In Last Out).
La idea simple es pasar el tipo de datos como un parámetro para que no necesitemos escribir el mismo código para diferentes tipos de datos. Por ejemplo, una empresa de software puede necesitar sort() para diferentes tipos de datos. En lugar de escribir y mantener varios códigos, podemos escribir un sort() y pasar el tipo de datos como parámetro.
C++ agrega dos nuevas palabras clave para admitir plantillas: ‘template’ y ‘typename’ . La segunda palabra clave siempre se puede reemplazar por la palabra clave ‘ clase ‘.
Ilustración:
Considere un ejemplo de platos apilados unos sobre otros en la cantina. La placa que está en la parte superior es la primera que se retira, es decir, la placa que se ha colocado en la posición más baja permanece en la pila durante el mayor período de tiempo. Por lo tanto, se puede ver simplemente que sigue el orden LIFO (Último en entrar, primero en salir)/FILO (Primero en entrar, último en salir).
Ejemplo:
C++14
// C++ Program to Implement stack using Class Templates // Including input output libraries #include <iostream> // Header File including all string functions #include <string> using namespace std; // Taking size of stack as 10 #define SIZE 5 // Class // To represent stack using template by class // taking class in template template <class T> class Stack { // Public access modifier public: // Empty constructor Stack(); // Method 1 // To add element to stack which can be any type // using stack push() operation void push(T k); // Method 2 // To remove top element from stack // using pop() operation T pop(); // Method 3 // To print top element in stack // using peek() method T topElement(); // Method 4 // To check whether stack is full // using isFull() method bool isFull(); // Method 5 // To check whether stack is empty // using isEmpty() method bool isEmpty(); private: // Taking data member top int top; // Initialising stack(array) of given size T st[SIZE]; }; // Method 6 // To initialise top to // -1(default constructor) template <class T> Stack<T>::Stack() { top = -1; } // Method 7 // To add element element k to stack template <class T> void Stack<T>::push(T k) { // Checking whether stack is completely filled if (isFull()) { // Display message when no elements can be pushed // into it cout << "Stack is full\n"; } // Inserted element cout << "Inserted element " << k << endl; // Incrementing the top by unity as element // is to be inserted top = top + 1; // Now, adding element to stack st[top] = k; } // Method 8 // To check if the stack is empty template <class T> bool Stack<T>::isEmpty() { if (top == -1) return 1; else return 0; } // Utility methods // Method 9 // To check if the stack is full or not template <class T> bool Stack<T>::isFull() { // Till top in inside the stack if (top == (SIZE - 1)) return 1; else // As top can not exceeds th size return 0; } // Method 10 template <class T> T Stack<T>::pop() { // Initialising a variable to store popped element T popped_element = st[top]; // Decreasing the top as // element is getting out from the stack top--; // Returning the element/s that is/are popped return popped_element; } // Method 11 template <class T> T Stack<T>::topElement() { // Initialising a variable to store top element T top_element = st[top]; // Returning the top element return top_element; } // Method 12 // Main driver method int main() { // Creating object of Stack class in main() method // Declaring objects of type Integer and String Stack<int> integer_stack; Stack<string> string_stack; // Adding elements to integer stack object // Custom integer entries integer_stack.push(2); integer_stack.push(54); integer_stack.push(255); // Adding elements to string stack // Custom string entries string_stack.push("Welcome"); string_stack.push("to"); string_stack.push("GeeksforGeeks"); // Now, removing element from integer stack cout << integer_stack.pop() << " is removed from stack" << endl; // Removing top element from string stack cout << string_stack.pop() << " is removed from stack " << endl; // Print and display the top element in integer stack cout << "Top element is " << integer_stack.topElement() << endl; // Print and display the top element in string stack cout << "Top element is " << string_stack.topElement() << endl; return 0; }
Inserted element 2 Inserted element 54 Inserted element 255 Inserted element Welcome Inserted element to Inserted element GeeksforGeeks 255 is removed from stack GeeksforGeeks is removed from stack Top element is 54 Top element is to
Explicación de salida:
Aquí se implementan dos tipos de datos (entero y string) utilizando una sola clase de pila. Primero, se toman dos objetos, uno es para la clase entera y el segundo es para la clase de string. Los elementos se insertan en ambas clases usando el método push() y isFull() de la clase de pila. Los elementos se eliminan mediante las funciones pop e isEmpty() de la clase de pila. Finalmente, el elemento superior se imprime para cada clase utilizando la función elemento superior().
Publicación traducida automáticamente
Artículo escrito por vikkycirus y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA