Back

Stack Visualization Using JavaScript

What is a Stack.

A stack is an abstract data type that serves as a collection of elements, with two principal operations: push, which adds an element to the collection, and pop, which removes the most recently added element that was not yet removed. The order in which elements come off a stack gives rise to its alternative name, LIFO (for last in, first out).

The below UI example would help in visualizing the Stack operations i.e Push, Pop and Find Min and Max.

Push
Pop
Min/Max
Status
Runtime Complexity
Access Search Insertion Deletion Space Complexity(Worst)
Θ(n) Θ(n) Θ(1) Θ(1) Θ(n)