Max Stack
Design a max stack that supports push, pop, top, peekMax and popMax.
push(x) -- Push element x onto stack.
pop() -- Remove the element on top of the stack and return it.
top() -- Get the element on the top.
peekMax() -- Retrieve the maximum element in the stack.
popMax() -- Retrieve the maximum element in the stack, and remove it. If you find more than one maximum elements, only remove the top-most one.
Example
Note
不是最优解,和之前的不同点在于Remove Max,需要链表结构来支持lgN的popMax().
这里使用了deque的API来去除最后出现的target,优先队列用于找最大值
Code
Last updated