Array-based Stack

Home > Computer Science > Algorithms and data structures > Stacks and Queues > Array-based Stack

This type of stack is implemented using an array and is one of the most basic types of stacks. It stores data in a LIFO (last-in, first-out) manner and can be implemented using a fixed size or dynamic size array.