Skip to content

video not played or not found error
click on direct switch

Hosted by Dailymotion. For legal issues: Copyright Center · DMC · Instant Removal

Stack data structure

K
kushagrarastogi17

3 Views • Mar 28, 2018

Description

A stack is a linear data structure.
In this data structure, elements are added to and removed only from one end of the list, that is, top of the stack.
It provides the information in the reverse of the entry order, so it is called last-in-first-out(LIFO).
The operation of removing an entry from a stack is called a pop operation.
The operation of adding an entry to a stack is called push operation.