Stack – Data Structure

Ankur Kulhari

Outline: Introduction Implementation (static and dynamic) Application Stack – Introduction Stack is a linear data structure. Stack follows the order as: LIFO(Last In First Out) or FILO(First In Last Out). Operations performed on the stack: Push: Adds an item in the stack. If the stack is full, then it is said to be an Overflow condition. Pop: Removes an item from …