Description:
定义栈的数据结构,请在该类型中实现一个能够得到栈中所含最小元素的min函数(时间复杂度应为O(1))。
Notes:
- 时间限制:1秒
- 空间限制:32768K
解题思路:
我们需要用到两个栈来实现,其中一个stackData用来正常的保存数据,另外一个stackMin用来保存到目前为止的最小值;
- push(node):将值node插入stackData中,如果stackMin为空或者node <= stackMin的栈顶元素则插入;即stackMin中存储的从栈底到栈顶是非递增排序的元素;
- pop():将stackData的栈顶元素弹出并记录值为node;如果node与stackMin的栈顶元素相同,则stackMin弹出栈顶元素;
- top():返回stackData的栈顶元素;
- min():返回stackMin的栈顶元素;
Java
import java.util.Stack;
public class Solution {
private Stack<Integer> stackData = new Stack<>();
private Stack<Integer> stackMin = new Stack<>();
public void push(int node) {
stackData.push(node);
if (stackMin.isEmpty() || node <= stackMin.peek()) {
stackMin.push(node);
}
}
public void pop() {
if (stackData.isEmpty()) {
throw new RuntimeException("the stack is empty");
}
int node = stackData.pop();
if (node == stackMin.peek()) {
stackMin.pop();
}
}
public int top() {
if (stackData.isEmpty()) {
throw new RuntimeException("the stack is empty");
}
return stackData.peek();
}
public int min() {
if (stackMin.isEmpty()) {
throw new RuntimeException("the stack is empty");
}
return stackMin.peek();
}
}