From f92d911aa1397cd4c2a0d63257b94aa537804b20 Mon Sep 17 00:00:00 2001 From: parte-Ajinkya <112530584+parte-Ajinkya@users.noreply.github.com> Date: Wed, 19 Oct 2022 22:16:13 +0530 Subject: [PATCH] Create java-stack-examples --- java-stack-examples | 110 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 110 insertions(+) create mode 100644 java-stack-examples diff --git a/java-stack-examples b/java-stack-examples new file mode 100644 index 0000000..36bda67 --- /dev/null +++ b/java-stack-examples @@ -0,0 +1,110 @@ +import java.util.Iterator; +import java.util.ListIterator; +import java.util.Stack; + +public class IterateOverStackExample { + public static void main(String[] args) { + Stack stackOfPlates = new Stack<>(); + + stackOfPlates.add("Plate 1"); + stackOfPlates.add("Plate 2"); + stackOfPlates.add("Plate 3"); + stackOfPlates.add("Plate 4"); + + System.out.println("=== Iterate over a Stack using Java 8 forEach() method ==="); + stackOfPlates.forEach(plate -> { + System.out.println(plate); + }); + + System.out.println("\n=== Iterate over a Stack using iterator() ==="); + Iterator platesIterator = stackOfPlates.iterator(); + while (platesIterator.hasNext()) { + String plate = platesIterator.next(); + System.out.println(plate); + } + + System.out.println("\n=== Iterate over a Stack using iterator() and Java 8 forEachRemaining() method ==="); + platesIterator = stackOfPlates.iterator(); + while (platesIterator.hasNext()) { + String plate = platesIterator.next(); + System.out.println(plate); + } + + + System.out.println("\n=== Iterate over a Stack from TOP to BOTTOM using listIterator() ==="); + // ListIterator allows you to traverse in both forward and backward directions. + // We'll start from the top of the stack and traverse backwards. + ListIterator platesListIterator = stackOfPlates.listIterator(stackOfPlates.size()); + while (platesListIterator.hasPrevious()) { + String plate = platesListIterator.previous(); + System.out.println(plate); + } + } +} + +*********************************************************************************************************************************************************************** + +import java.util.Stack; + +public class StackExample { + public static void main(String[] args) { + // Creating a Stack + Stack stackOfCards = new Stack<>(); + + // Pushing new items to the Stack + stackOfCards.push("Jack"); + stackOfCards.push("Queen"); + stackOfCards.push("King"); + stackOfCards.push("Ace"); + + System.out.println("Stack => " + stackOfCards); + System.out.println(); + + // Popping items from the Stack + String cardAtTop = stackOfCards.pop(); // Throws EmptyStackException if the stack is empty + System.out.println("Stack.pop() => " + cardAtTop); + System.out.println("Current Stack => " + stackOfCards); + System.out.println(); + + // Get the item at the top of the stack without removing it + cardAtTop = stackOfCards.peek(); + System.out.println("Stack.peek() => " + cardAtTop); + System.out.println("Current Stack => " + stackOfCards); + + } +} + +*********************************************************************************************************************************************************************** + +import java.util.Stack; + +public class StackSizeSearchExample { + public static void main(String[] args) { + Stack stackOfCards = new Stack<>(); + + stackOfCards.push("Jack"); + stackOfCards.push("Queen"); + stackOfCards.push("King"); + stackOfCards.push("Ace"); + + System.out.println("Stack : " + stackOfCards); + + // Check if the Stack is empty + System.out.println("Is Stack empty? : " + stackOfCards.isEmpty()); + + // Find the size of Stack + System.out.println("Size of Stack : " + stackOfCards.size()); + + // Search for an element + // The search() method returns the 1-based position of the element from the top of the stack + // It returns -1 if the element was not found in the stack + int position = stackOfCards.search("Queen"); + + if(position != -1) { + System.out.println("Found the element \"Queen\" at position : " + position); + } else { + System.out.println("Element not found"); + } + + } +}