設計一個支持 push,pop,top 操作,並能在常數時間內檢索到最小元素的棧
阿新 • • 發佈:2019-05-02
http after 返回 ice n) ring result -- ava
小結:
1、
常數時間內檢索到最小元素
最小棧 - 力扣(LeetCode)
https://leetcode-cn.com/problems/min-stack/
設計一個支持 push,pop,top 操作,並能在常數時間內檢索到最小元素的棧。
- push(x) -- 將元素 x 推入棧中。
- pop() -- 刪除棧頂的元素。
- top() -- 獲取棧頂元素。
- getMin() -- 檢索棧中的最小元素。
示例:
MinStack minStack = new MinStack(); minStack.push(-2); minStack.push(0); minStack.push(-3); minStack.getMin(); --> 返回 -3. minStack.pop(); minStack.top(); --> 返回 0. minStack.getMin(); --> 返回 -2.
package leetcode;
import java.util.Stack;
class MinStack {
int min = Integer.MAX_VALUE;
Stack<Integer> stack = new Stack<Integer>();
public static void main(String[] args) {
MinStack minStack = new MinStack();
minStack.push(-2);
minStack.push(0);
minStack.push(-3);minStack.getMin();
minStack.pop();
minStack.top();
minStack.getMin();
}
public void push(int x) {
// only push the old minimum value when the current
// minimum value changes after pushing the new value x
if (x <= min) {
stack.push(min);min = x;
}
stack.push(x);
}
public void pop() {
// if pop operation could result in the changing of the current minimum value,
// pop twice and change the current minimum value to the last minimum value.
if (stack.pop() == min) min = stack.pop();
}
public int top() {
return stack.peek();
}
public int getMin() {
return min;
}
}
設計一個支持 push,pop,top 操作,並能在常數時間內檢索到最小元素的棧