-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMaximum_Stack.py
63 lines (52 loc) · 1.53 KB
/
Maximum_Stack.py
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
57
58
59
60
61
62
63
# 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.
#
# MaxStack stack = new MaxStack();
# stack.push(5);
# stack.push(1);
# stack.push(5);
# stack.top(); -> 5
# stack.popMax(); -> 5
# stack.top(); -> 1
# stack.peekMax(); -> 5
# stack.pop(); -> 1
# stack.top(); -> 5
class MaxStack:
def __init__(self):
"""
initialize your data structure here.
"""
self.stack = []
def push(self, x):
if len(self.stack) == 0:
self.stack.append([x, x])
else:
maxVal = max(self.stack[-1][1], x)
self.stack.append([x, maxVal])
def pop(self):
return self.stack.pop()[0]
def top(self):
return self.stack[-1][0]
def peekMax(self):
return self.stack[-1][1]
def popMax(self):
m = self.stack[-1][1]
b = []
while self.stack[-1][0] != m:
b.append(self.pop())
self.pop()
for num in reversed(b):
self.push(num)
return m
# Your MaxStack object will be instantiated and called as such:
# obj = MaxStack()
# obj.push(x)
# param_2 = obj.pop()
# param_3 = obj.top()
# param_4 = obj.peekMax()
# param_5 = obj.popMax()