Stacks


Stack is a linear data structure which follows a particular order in which the operations are performed. The order may be LIFO(Last In First Out) or FILO(First In Last Out).



Stacks are a type of container adaptors with LIFO(Last In First Out) type of working, where a new element is added at one end and (top) an element is removed from that end only. Stack uses an encapsulated object of either vector or deque (by default) or list (sequential container class) as its underlying container, providing a specific set of member functions to access its elements.



The functions associated with stack are:


empty() – Returns whether the stack is empty – Time Complexity : O(1)

size() – Returns the size of the stack – Time Complexity : O(1)

top() – Returns a reference to the top most element of the stack – Time Complexity : O(1)

push(g) – Adds the element ‘g’ at the top of the stack – Time Complexity : O(1)

pop() – Deletes the top most element of the stack – Time Complexity : O(1)




    // CPP program to demonstrate working of STL stack
    #include 
    using namespace std;

    void showstack(stack  s)
    {
        while (!s.empty())
        {
            cout << '\t' << s.top();
            s.pop();
        }
        cout << '\n';
    }

    int main ()
    {
        stack  s;
        s.push(10);
        s.push(30);
        s.push(20);
        s.push(5);
        s.push(1);

        cout << "The stack is : ";
        showstack(s);

        cout << "\ns.size() : " << s.size();
        cout << "\ns.top() : " << s.top();


        cout << "\ns.pop() : ";
        s.pop();
        showstack(s);

        return 0;
    }