Article by: Manish Methani
Last Updated: October 24, 2021 at 8:04am IST
A 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). Mainly the following three basic operations are performed in the java stack class:
Push: Adds an item in the stack. If the stack is full, then it is said to be an Overflow condition.
Pop: Removes an item from the stack. The items are popped in the reversed order in which they are pushed. If the stack is empty, then it is said to be an Underflow condition.
Peek or Top: Returns the top element of the stack.
isEmpty: Returns true if the stack is empty, else false.
import java.util.*; public class JavaStackDemo { public static void main(String[] args) { //Create an empty Stack Stack stack = new Stack(); System.out.println("After Push Operation on Stack :"); stack.push("first"); printStackElements(stack); stack.push("second"); printStackElements(stack); stack.push("third"); printStackElements(stack); System.out.println(" After Pop Operation on Stack :"); stack.pop(); printStackElements(stack); stack.pop(); printStackElements(stack); stack.pop(); printStackElements(stack); } private static void printStackElements(Stack stack) { if(stack.isEmpty()) { System.out.println("No more items left on the stack"); } else { System.out.printf("%s ", stack); } } }
After Push Operation on Stack : [first] [first, second] [first, second, third] After Pop Operation on Stack : [first, second] [first] No more items left on the stack