码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode - Min Stack

时间:2014-11-19 14:13:08      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:des   style   ar   color   sp   on   div   bs   as   

Design a stack that supports push, pop, top, and retrieving the minimum element in constant time.

  • push(x) -- Push element x onto stack.
  • pop() -- Removes the element on top of the stack.
  • top() -- Get the top element.

  • getMin() -- Retrieve the minimum element in the stack.
         
class MinStack {
public:
	struct Node
	{
		int val;
		int cntEmlem;
		Node(int value,int count) : val(value),cntEmlem(count){}
	};
    void push(int x) {
		stk.push(x);
		if(minStk.empty() || x < minStk.top().val)
		{
			Node n(x,1);
			minStk.push(n);
		}
		else
		{
			Node n = minStk.top();
			n.cntEmlem++;
			minStk.pop();
			minStk.push(n);
		}
    }

    void pop() {
		stk.pop();
		Node n = minStk.top();
		minStk.pop();
		n.cntEmlem--;
		if(n.cntEmlem > 0)
		{
			minStk.push(n);
		}
    }

    int top() {
		return stk.top();
    }

    int getMin() {
		return minStk.top().val;
    }
private:
	std::stack<int> stk;
	std::stack<Node> minStk;
};

leetcode - Min Stack

标签:des   style   ar   color   sp   on   div   bs   as   

原文地址:http://blog.csdn.net/akibatakuya/article/details/41280453

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!