JavaAlgorithms/Others/ReverseStackUsingRecursion.java

63 lines
1.6 KiB
Java
Raw Permalink Normal View History

package Others;
/* Program to reverse a Stack using Recursion*/
import java.util.Stack;
public class ReverseStackUsingRecursion {
2020-10-24 18:23:28 +08:00
// Stack
private static Stack<Integer> stack = new Stack<>();
2020-10-24 18:23:28 +08:00
// Main function
public static void main(String[] args) {
// To Create a Dummy Stack containing integers from 0-9
for (int i = 0; i < 10; i++) {
stack.push(i);
}
System.out.println("STACK");
2020-10-24 18:23:28 +08:00
// To print that dummy Stack
for (int k = 9; k >= 0; k--) {
System.out.println(k);
}
2020-10-24 18:23:28 +08:00
// Reverse Function called
reverseUsingRecursion(stack);
2020-10-24 18:23:28 +08:00
System.out.println("REVERSED STACK : ");
// To print reversed stack
while (!stack.isEmpty()) {
System.out.println(stack.pop());
}
2020-10-24 18:23:28 +08:00
}
2020-10-24 18:23:28 +08:00
// Function Used to reverse Stack Using Recursion
private static void reverseUsingRecursion(Stack<Integer> stack) {
if (stack.isEmpty()) // If stack is empty then return
{
return;
}
2020-10-24 18:23:28 +08:00
/* All items are stored in call stack until we reach the end*/
2020-10-24 18:23:28 +08:00
int temptop = stack.peek();
stack.pop();
reverseUsingRecursion(stack); // Recursion call
insertAtEnd(temptop); // Insert items held in call stack one by one into stack
}
2020-10-24 18:23:28 +08:00
// Function used to insert element at the end of stack
private static void insertAtEnd(int temptop) {
if (stack.isEmpty()) {
stack.push(temptop); // If stack is empty push the element
} else {
int temp = stack.peek(); /* All the items are stored in call stack until we reach end*/
stack.pop();
2020-10-24 18:23:28 +08:00
insertAtEnd(temptop); // Recursive call
2020-10-24 18:23:28 +08:00
stack.push(temp);
}
2020-10-24 18:23:28 +08:00
}
}