-
Notifications
You must be signed in to change notification settings - Fork 19.7k
/
Copy pathMinStackUsingTwoStacks.java
57 lines (50 loc) · 1.38 KB
/
MinStackUsingTwoStacks.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
package com.thealgorithms.stacks;
import java.util.Stack;
/**
* Min-Stack implementation that supports push, pop, and retrieving the minimum element in constant time.
*
* @author Hardvan
*/
public final class MinStackUsingTwoStacks {
MinStackUsingTwoStacks() {
}
private final Stack<Integer> stack = new Stack<>();
private final Stack<Integer> minStack = new Stack<>();
/**
* Pushes a new element onto the {@code stack}.
* If the value is less than or equal to the current minimum, it is also pushed onto the {@code minStack}.
*
* @param value The value to be pushed.
*/
public void push(int value) {
stack.push(value);
if (minStack.isEmpty() || value <= minStack.peek()) {
minStack.push(value);
}
}
/**
* Removes the top element from the stack.
* If the element is the minimum element, it is also removed from the {@code minStack}.
*/
public void pop() {
if (stack.pop().equals(minStack.peek())) {
minStack.pop();
}
}
/**
* Retrieves the top element of the stack.
*
* @return The top element.
*/
public int top() {
return stack.peek();
}
/**
* Retrieves the minimum element in the stack.
*
* @return The minimum element.
*/
public int getMin() {
return minStack.peek();
}
}