mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-07 01:35:16 +08:00
refactor: ReverseStackUsingRecursion
(#5386)
This commit is contained in:
@ -1,63 +1,44 @@
|
||||
package com.thealgorithms.others;
|
||||
|
||||
/* Program to reverse a Stack using Recursion*/
|
||||
import java.util.Stack;
|
||||
|
||||
/**
|
||||
* Class that provides methods to reverse a stack using recursion.
|
||||
*/
|
||||
public final class ReverseStackUsingRecursion {
|
||||
private ReverseStackUsingRecursion() {
|
||||
}
|
||||
|
||||
// Stack
|
||||
private static Stack<Integer> stack = new Stack<>();
|
||||
|
||||
// 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);
|
||||
/**
|
||||
* Reverses the elements of the given stack using recursion.
|
||||
*
|
||||
* @param stack the stack to be reversed
|
||||
* @throws IllegalArgumentException if the stack is null
|
||||
*/
|
||||
public static void reverse(Stack<Integer> stack) {
|
||||
if (stack == null) {
|
||||
throw new IllegalArgumentException("Stack cannot be null");
|
||||
}
|
||||
System.out.println("STACK");
|
||||
|
||||
// To print that dummy Stack
|
||||
for (int k = 9; k >= 0; k--) {
|
||||
System.out.println(k);
|
||||
}
|
||||
|
||||
// Reverse Function called
|
||||
reverseUsingRecursion(stack);
|
||||
|
||||
System.out.println("REVERSED STACK : ");
|
||||
// To print reversed stack
|
||||
while (!stack.isEmpty()) {
|
||||
System.out.println(stack.pop());
|
||||
if (!stack.isEmpty()) {
|
||||
int topElement = stack.pop();
|
||||
reverse(stack);
|
||||
insertAtBottom(stack, topElement);
|
||||
}
|
||||
}
|
||||
|
||||
// Function Used to reverse Stack Using Recursion
|
||||
private static void reverseUsingRecursion(Stack<Integer> stack) {
|
||||
if (stack.isEmpty()) { // If stack is empty then return
|
||||
return;
|
||||
}
|
||||
/* All items are stored in call stack until we reach the end*/
|
||||
|
||||
int temptop = stack.peek();
|
||||
stack.pop();
|
||||
reverseUsingRecursion(stack); // Recursion call
|
||||
insertAtEnd(temptop); // Insert items held in call stack one by one into stack
|
||||
}
|
||||
|
||||
// Function used to insert element at the end of stack
|
||||
private static void insertAtEnd(int temptop) {
|
||||
/**
|
||||
* Inserts an element at the bottom of the given stack.
|
||||
*
|
||||
* @param stack the stack where the element will be inserted
|
||||
* @param element the element to be inserted at the bottom
|
||||
*/
|
||||
private static void insertAtBottom(Stack<Integer> stack, int element) {
|
||||
if (stack.isEmpty()) {
|
||||
stack.push(temptop); // If stack is empty push the element
|
||||
stack.push(element);
|
||||
} else {
|
||||
int temp = stack.peek();
|
||||
/* All the items are stored in call stack until we reach end*/
|
||||
stack.pop();
|
||||
|
||||
insertAtEnd(temptop); // Recursive call
|
||||
|
||||
stack.push(temp);
|
||||
int topElement = stack.pop();
|
||||
insertAtBottom(stack, element);
|
||||
stack.push(topElement);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -0,0 +1,58 @@
|
||||
package com.thealgorithms.others;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||
import static org.junit.jupiter.api.Assertions.assertThrows;
|
||||
import static org.junit.jupiter.api.Assertions.assertTrue;
|
||||
|
||||
import java.util.Stack;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class ReverseStackUsingRecursionTest {
|
||||
|
||||
@Test
|
||||
void testReverseWithMultipleElements() {
|
||||
Stack<Integer> stack = new Stack<>();
|
||||
for (int i = 0; i < 5; i++) {
|
||||
stack.push(i);
|
||||
}
|
||||
|
||||
ReverseStackUsingRecursion.reverse(stack);
|
||||
|
||||
for (int i = 0; i < 5; i++) {
|
||||
assertEquals(i, stack.pop());
|
||||
}
|
||||
assertTrue(stack.isEmpty());
|
||||
}
|
||||
|
||||
@Test
|
||||
void testReverseWithSingleElement() {
|
||||
Stack<Integer> stack = new Stack<>();
|
||||
stack.push(1);
|
||||
|
||||
ReverseStackUsingRecursion.reverse(stack);
|
||||
|
||||
assertEquals(1, stack.pop());
|
||||
assertTrue(stack.isEmpty());
|
||||
}
|
||||
|
||||
@Test
|
||||
void testReverseWithEmptyStack() {
|
||||
Stack<Integer> stack = new Stack<>();
|
||||
|
||||
ReverseStackUsingRecursion.reverse(stack);
|
||||
|
||||
assertTrue(stack.isEmpty());
|
||||
}
|
||||
|
||||
@Test
|
||||
void testReverseWithNullStack() {
|
||||
Stack<Integer> stack = null;
|
||||
|
||||
Exception exception = assertThrows(IllegalArgumentException.class, () -> ReverseStackUsingRecursion.reverse(stack));
|
||||
|
||||
String expectedMessage = "Stack cannot be null";
|
||||
String actualMessage = exception.getMessage();
|
||||
|
||||
assertTrue(actualMessage.contains(expectedMessage));
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user