Let's Code Stack using Array

Dear Sciaku Learner you are not logged in or not enrolled in this course.

Please Click on login or enroll now button.

If you have any query feel free to chat us!

Happy Coding! Happy Learning!

Lecture 229:- Let's Code Stack using Array

 

Below is the C++ implementation of a stack using an array:

cppCopy code

#include <iostream> class Stack { private:    int* array;    int capacity;    int top; public:    Stack(int capacity) : capacity(capacity), top(-1) {        array = new int[capacity];    }    ~Stack() {        delete[] array;    }    bool isEmpty() {        return top == -1;    }    bool isFull() {        return top == capacity - 1;    }    void push(int value) {        if (isFull()) {            std::cout << "Stack Overflow! Cannot push element " << value << std::endl;            return;        }        array[++top] = value;    }    void pop() {        if (isEmpty()) {            std::cout << "Stack Underflow! Cannot pop element." << std::endl;            return;        }        --top;    }    int peek() {        if (isEmpty()) {            std::cout << "Stack is empty. Cannot peek." << std::endl;            return -1;        }        return array[top];    } }; int main() {    Stack stack(5);    stack.push(1);    stack.push(2);    stack.push(3);    std::cout << "Top element: " << stack.peek() << std::endl; // Output: 3    stack.pop();    stack.push(4);    while (!stack.isEmpty()) {        std::cout << "Popped element: " << stack.peek() << std::endl;        stack.pop();    }    return 0; }

In this implementation, the Stack class uses an integer array to store the elements of the stack. The top variable keeps track of the index of the top element in the stack. The push method adds an element to the stack, the pop method removes the top element, and the peek method returns the value of the top element without removing it.

In the main function, we demonstrate how to use the Stack class by creating a stack of capacity 5. We push elements onto the stack, peek at the top element, and then pop elements until the stack becomes empty. The output will show the elements being pushed and popped, following the Last In First Out (LIFO) principle.

12. Stack

0 Comments

Start the conversation!

Be the first to share your thoughts

Frequently Asked Questions About Sciaku Courses & Services

Quick answers to common questions about our courses, quizzes, and learning platform

Didn't find what you're looking for?

help_center Contact Support