-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy path859.max-stack.py
106 lines (95 loc) · 2.17 KB
/
859.max-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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
# Tag: Stack
# Time: -
# Space: O(N)
# Ref: Leetcode-716
# Note: -
# 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.
#
# ---
# *
#
# ```
# Input:
# push(5)
# push(1)
# push(5)
# top()
# popMax()
# top()
# peekMax()
# pop()
# top()
# Output:
# 5
# 5
# 1
# 5
# 1
# 5
# ```
#
# 1. `-1e7 <= x <= 1e7`
# 2. Number of operations won't exceed `10000`.
# 3. The last four operations won't be called when stack is empty.
class MaxStack:
def __init__(self):
# do intialization if necessary
self.stack = []
self.max_stack = []
"""
@param: number: An integer
@return: nothing
"""
def push(self, x):
# write your code here
max_val = x if len(self.max_stack) == 0 else self.max_stack[-1]
self.stack.append(x)
self.max_stack.append(max_val if max_val > x else x)
"""
@return: An integer
"""
def pop(self):
# write your code here
if len(self.stack) > 0:
self.max_stack.pop()
return self.stack.pop()
"""
@return: An integer
"""
def top(self):
# write your code here
if len(self.stack) > 0:
return self.stack[-1]
"""
@return: An integer
"""
def peekMax(self):
# write your code here
if len(self.max_stack) > 0:
return self.max_stack[-1]
"""
@return: An integer
"""
def popMax(self):
# write your code here
if len(self.max_stack) > 0:
max_val = self.max_stack[-1]
tmp = []
while self.top() != max_val:
tmp.append(self.pop())
self.pop()
while len(tmp) > 0:
self.push(tmp.pop())
return max_val