LIFO
-
StackAlgoDS/DataStructure 2020. 1. 16. 23:04
1. Overview Stack is a linear data structure that follows a particular order in which the operations are performed. The order may be LIFO(Last In First Out) or FILO(First In Last Out). 2. Description 2.1 Operations 2.1.1 Push Adds an item in the stack. If the stack is full, then it is said to be an Overflow condition. 2.1.2 Pop Removes an item from the stack. The items are popped in the reversed..