w3resource

C++ Stack Exercises: Implement a stack using an array with push, pop operations

C++ Stack: Exercise-1 with Solution

Write a C++ program to implement a stack using an array with push and pop operations. Find the top element of the stack and check if the stack is empty or not.

Test Data:
Create a stack object:
Check the stack is empty or not? 1
Insert some elements onto the stack:
Stack elements: 4 5 6 7
Remove an element from the stack! 4
Stack elements: 5 6 7

Sample Solution:

C++ Code:

#include <iostream>
using namespace std;

#define MAX_SIZE 1000 // Maximum size of stack

class Stack {
private:
    int top; // Index of top element
    int arr[MAX_SIZE]; // Array to store elements

public:
    Stack() {
        top = -1; // Initialize top index to -1 (empty stack)
    }

    bool push(int x) {
        if (top >= MAX_SIZE - 1) {
            cout << "Stack is full" << endl; // Display message if stack is full
            return false; // Return false to indicate failure in pushing element
        }
        arr[++top] = x; // Increment top index and add element to array
        return true; // Return true to indicate successful element addition
    }

    int pop() {
        if (top < 0) {
            cout << "Stack underflow" << endl; // Display message if stack is empty
            return 0; // Return 0 to indicate failure in popping element
        }
        return arr[top--]; // Return top element and decrement top index
    }

    int peek() {
        if (top < 0) {
            cout << "Stack is empty" << endl; // Display message if stack is empty
            return 0; // Return 0 to indicate failure in peeking element
        }
        return arr[top]; // Return top element without modifying top index
    }

    bool isEmpty() {
        return (top < 0); // Return true if stack is empty (top index is -1)
    }

    void display() {
        if (top < 0) {
            cout << "Stack is empty" << endl; // Display message if stack is empty
            return;
        }
        cout << "\nStack elements: ";
        for (int i = top; i >= 0; i--)
            cout << arr[i] << " "; // Display elements of the stack
        cout << endl;
    }
};

int main() {
    //Initialize a stack 
    cout << "Create a stack object:\n";
    Stack s; 
    cout << "Check the stack is empty or not? ";
    cout << s.isEmpty() << endl; // Check if the stack is empty
    cout << "\nInsert some elements onto the stack:\n";
    s.push(7); 
    s.push(6);
    s.push(5);
    s.push(4);
    s.display(); // Display elements in the stack
    cout << "\nRemove an element from the stack! ";
    cout << s.pop(); // Pop an element from the stack
    s.display(); // Display elements in the stack
    cout << "\nTop of the element of the stack:\n";
    cout << s.peek(); // Display the top element of the stack
    cout << endl;
    return 0;
}

Sample Output:

Create a stack object:
Check the stack is empty or not? 1

Insert some elements onto the stack:

Stack elements: 4 5 6 7 

Remove an element from the stack! 4
Stack elements: 5 6 7 

Top of the element of the stack:
5

Flowchart:

Flowchart: Implement a stack using an array with push, pop operations.
Flowchart: Implement a stack using an array with push, pop operations.
Flowchart: Implement a stack using an array with push, pop operations.

CPP Code Editor:

Contribute your code and comments through Disqus.

Previous C++ Exercise: C++ Stack Exercises Home
Next C++ Exercise: Check if the stack (using an array) is full.

What is the difficulty level of this exercise?



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://w3resource.com/cpp-exercises/stack/cpp-stack-exercise-1.php