- Notifications
You must be signed in to change notification settings - Fork 19.9k
/
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
packagecom.thealgorithms.stacks;
importjava.util.Stack;
/**
* Min-Stack implementation that supports push, pop, and retrieving the minimum element in constant time.
*
* @author Hardvan
*/
publicfinalclassMinStackUsingTwoStacks {
MinStackUsingTwoStacks() {
}
privatefinalStack<Integer> stack = newStack<>();
privatefinalStack<Integer> minStack = newStack<>();
/**
* 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.
*/
publicvoidpush(intvalue) {
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}.
*/
publicvoidpop() {
if (stack.pop().equals(minStack.peek())) {
minStack.pop();
}
}
/**
* Retrieves the top element of the stack.
*
* @return The top element.
*/
publicinttop() {
returnstack.peek();
}
/**
* Retrieves the minimum element in the stack.
*
* @return The minimum element.
*/
publicintgetMin() {
returnminStack.peek();
}
}