您的位置:首页 > 其它

[LeetCode] Min Stack

2015-11-07 15:49 381 查看
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 {
// normal stack
Stack<Integer> st = new Stack<Integer>();
// min value stack
Stack<Integer> stm = new Stack<Integer>();

public void push(int x) {
st.push(x);
if (stm.isEmpty() || stm.peek() >= x)
stm.push(x);
}

public void pop() {
int peek = st.peek();
st.pop();
if (peek <= stm.peek())
stm.pop();
}

public int top() {
return st.peek();
}

public int getMin() {
return stm.peek();
}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: