标签:pop scribe 描述 solution AC IV div 返回 color
class Solution { private: stack<int> sta; stack<int> minsta; public: void push(int value) { if(minsta.empty()||value < minsta.top()) { minsta.push(value); } sta.push(value); } void pop() { if(sta.top() == minsta.top()) { minsta.pop(); } sta.pop(); } int top() { return sta.top(); } int min() { return minsta.top(); } };
标签:pop scribe 描述 solution AC IV div 返回 color
原文地址:https://www.cnblogs.com/Lune-Qiu/p/9099779.html