Fork me on GitHub

Max Stack

Description

Design a max stack that supports push, pop, top, peekMax and popMax.

  1. push(x) – Push element x onto stack.
  2. pop() – Remove the element on top of the stack and return it.
  3. top() – Get the element on the top.
  4. peekMax() – Retrieve the maximum element in the stack.
  5. 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.

Solution

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
class MaxStack {
private:
map<int, stack<list<int>::iterator> > mapping;
list<int> lis;
public:
/** initialize your data structure here. */
MaxStack() {

}

void push(int x) {
lis.push_front(x);
mapping[x].push(lis.begin());
}

int pop() {
int ret = lis.front();
mapping[ret].pop();
if (mapping[ret].empty()) mapping.erase(ret);
lis.pop_front();
return ret;
}

int top() {
return lis.front();
}

int peekMax() {
return mapping.rbegin()->first;
}

int popMax() {
auto iter = mapping.rbegin()->second.top();
int ret = *iter;
mapping.rbegin()->second.pop();
if (mapping.rbegin()->second.empty())
mapping.erase(ret);
lis.erase(iter);
return ret;
}
};

/**
* Your MaxStack object will be instantiated and called as such:
* MaxStack obj = new MaxStack();
* obj.push(x);
* int param_2 = obj.pop();
* int param_3 = obj.top();
* int param_4 = obj.peekMax();
* int param_5 = obj.popMax();
*/