一个栈同时保存当前值和栈内最小值 class MinStack { public: /** initialize your data structure here. */ MinStack() { } void push(int x) {