Data Structures : Stack
Stack is the data structure that can be logically through as Linear Data Structure. The basic implementation is called as LIFO ( Last In First Out ) way.
There are three operation can be perform in a stack data structure.
There are three operation can be perform in a stack data structure.
- Push ( Insertion of an element )
- Pop ( Deletion and return of top element )
- Peek (Return of top element, just pick and see what it is.)
Comments
Post a Comment