第十四天155. 最小栈

155. 最小栈

设计一个支持 push ,pop ,top 操作,并能在常数时间内检索到最小元素的栈。

push(x) —— 将元素 x 推入栈中。
pop() —— 删除栈顶的元素。
top() —— 获取栈顶元素。
getMin() —— 检索栈中的最小元素。

输入:
["MinStack","push","push","push","getMin","pop","top","getMin"]
[[],[-2],[0],[-3],[],[],[],[]]

输出:
[null,null,null,null,-3,null,0,-2]

解释:
MinStack minStack = new MinStack();
minStack.push(-2);
minStack.push(0);
minStack.push(-3);
minStack.getMin();   --> 返回 -3.
minStack.pop();
minStack.top();      --> 返回 0.
minStack.getMin();   --> 返回 -2.

class MinStack{
      stack<int> x_stack;
      stack<int> min_stack;
public:
     MinStack(){
         min_stack.push(INT_MAX);
     };
     
     void push(int x){
     x_stack.push(x);
     min_stack.push(min(min_stack.top(), x));
     }
     
     void pop(){
     s_stack.pop();
     min_stack.pop();
     }
     int top(){
     return x_stack.top();
     }
     int getMin(){
     return min_stack.top();
     }
};
上一篇:力扣 34. 在排序数组中查找元素的第一个和最后一个位置


下一篇:蓝桥杯--印章(DP动态规划)