refactor: ReverseStackUsingRecursion (#5386)

This commit is contained in:
Alex Klymenko
2024-08-25 09:12:17 +02:00
committed by GitHub
parent e1d8b6f8a7
commit 0b0b26e3fe
2 changed files with 85 additions and 46 deletions

View File

@ -1,63 +1,44 @@
package com.thealgorithms.others; package com.thealgorithms.others;
/* Program to reverse a Stack using Recursion*/
import java.util.Stack; import java.util.Stack;
/**
* Class that provides methods to reverse a stack using recursion.
*/
public final class ReverseStackUsingRecursion { public final class ReverseStackUsingRecursion {
private ReverseStackUsingRecursion() { private ReverseStackUsingRecursion() {
} }
// Stack /**
private static Stack<Integer> stack = new Stack<>(); * Reverses the elements of the given stack using recursion.
*
// Main function * @param stack the stack to be reversed
public static void main(String[] args) { * @throws IllegalArgumentException if the stack is null
// To Create a Dummy Stack containing integers from 0-9 */
for (int i = 0; i < 10; i++) { public static void reverse(Stack<Integer> stack) {
stack.push(i); if (stack == null) {
throw new IllegalArgumentException("Stack cannot be null");
} }
System.out.println("STACK"); if (!stack.isEmpty()) {
int topElement = stack.pop();
// To print that dummy Stack reverse(stack);
for (int k = 9; k >= 0; k--) { insertAtBottom(stack, topElement);
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());
} }
} }
// Function Used to reverse Stack Using Recursion /**
private static void reverseUsingRecursion(Stack<Integer> stack) { * Inserts an element at the bottom of the given stack.
if (stack.isEmpty()) { // If stack is empty then return *
return; * @param stack the stack where the element will be inserted
} * @param element the element to be inserted at the bottom
/* All items are stored in call stack until we reach the end*/ */
private static void insertAtBottom(Stack<Integer> stack, int element) {
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) {
if (stack.isEmpty()) { if (stack.isEmpty()) {
stack.push(temptop); // If stack is empty push the element stack.push(element);
} else { } else {
int temp = stack.peek(); int topElement = stack.pop();
/* All the items are stored in call stack until we reach end*/ insertAtBottom(stack, element);
stack.pop(); stack.push(topElement);
insertAtEnd(temptop); // Recursive call
stack.push(temp);
} }
} }
} }

View File

@ -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));
}
}