8.4练手 腾讯50题

leetcode155 实现最小栈

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

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

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

单个Stack C++实现,想法是存一个最小值在栈中,同时在进栈的时候多输入一次之前的最小值。

int MAX_VALUE = 2147483647;
class MinStack{
private:
	stack<int> sort;

public:
	int minValue = MAX_VALUE;
	MinStack(){
		
	}
	void push(int x) {
        printf("push %d",x);
		if (sort.empty()&&x<MAX_VALUE){
			minValue = x;
			sort.push(x);
			return;
		}
		//如果当前值比最小值小,则更改最小值
		if (x <= minValue){
			sort.push(minValue); //将之前的最小值多push一个进去,两个一组进去
			minValue = x;
		}
		sort.push(x);//最终还是要将当前值push进去
		
	}

	void pop() {
        printf("pop ");
        printf("%d \n",sort.top());
		if (minValue == sort.top()){
			//准备将最小值pop出去了,所以要更改一下最小值
			sort.pop();
			minValue = sort.top();//之前两两进去的最小值
			sort.pop();
		}
		else{
			//pop出去时无关紧要的值
			sort.pop();
		}
	}

	int top() {
        printf("top:");
        printf("%d \n",sort.top());
    
		return sort.top();
	}

	int getMin() {
        printf("minValue");
		return minValue;
	}
};
/**
 * Your MinStack object will be instantiated and called as such:
 * MinStack* obj = new MinStack();
 * obj->push(x);
 * obj->pop();
 * int param_3 = obj->top();
 * int param_4 = obj->getMin();
 */

 

上一篇:力扣刷题-最小栈


下一篇:LeetCode 刷题笔记 155. 最小栈(Min Stack)