原文地址:https://www.jianshu.com/p/32383c701839
时间限制:1秒 空间限制:32768K
题目描述
定义栈的数据结构,请在该类型中实现一个能够得到栈中所含最小元素的min函数(时间复杂度应为O(1))。
我的代码
class Solution {
stack<int> st1,st2;
public:
void push(int value) {
st1.push(value);
if(st2.empty() || value<=st2.top())
st2.push(value);
}
void pop() {
if(st2.top()==st1.top())
st2.pop();
st1.pop();
}
int top() {
return st1.top();
}
int min() {
return st2.top();
}
};
运行时间:4ms
占用内存:488k