forked from wisdompeak/LeetCode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path716.Max-Stack.cpp
56 lines (49 loc) · 1.04 KB
/
716.Max-Stack.cpp
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
52
53
54
55
56
class MaxStack {
list<int>List;
map<int,vector<list<int>::iterator>>Map;
public:
/** initialize your data structure here. */
MaxStack() {
}
void push(int x)
{
List.push_back(x);
Map[x].push_back(--List.end());
}
int pop()
{
int x=List.back();
Map[x].pop_back();
if (Map[x].size()==0)
Map.erase(x);
List.pop_back();
return x;
}
int top()
{
return List.back();
}
int peekMax()
{
return (--Map.end())->first;
}
int popMax()
{
int x=(--Map.end())->first;
auto it=Map[x].back();
Map[x].pop_back();
if (Map[x].size()==0)
Map.erase(x);
List.erase(it);
return x;
}
};
/**
* 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();
*/