棧————最小棧

1 class MinStack { 2 public: 3 /** initialize your data structure here. */ 4 MinStack() { 5 6 } 7 stack<int> s; 8 void push(int x) { 9 if(s.empty() || x<=s
相關文章
相關標籤/搜索