-
Notifications
You must be signed in to change notification settings - Fork 139
/
Copy pathmax-stack-implementation.py
116 lines (96 loc) · 2.93 KB
/
max-stack-implementation.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
106
107
108
109
110
111
112
113
114
115
116
"""
#43
Amazon
Implement a stack that has the following methods:
-> push(val), which pushes an element onto the stack
-> pop(), which pops off and returns the topmost element of the stack.
If there are no elements in the stack, then it should throw an error or return null.
-> max(), which returns the maximum value in the stack currently.
If there are no elements in the stack, then it should throw an error or return null.
Each method should run in constant time.
"""
# Node represents a single stack element
class Node:
def __init__(self, val):
self.val = val
self.prev = None
def __str__(self):
return "<" + str(self.val) + ">"
# Ordinary stack implementation with linked-list
class Stack:
def __init__(self):
self.top = Node(None)
def __str__(self):
stringRepresentation = "< "
currentNode = self.top
while currentNode.val != None:
stringRepresentation += str(currentNode)
currentNode = currentNode.prev
stringRepresentation += " >"
return stringRepresentation
def push(self, val):
newNode = Node(val)
newNode.prev = self.top
self.top = newNode
def pop(self):
temp = self.top
if temp.val != None:
self.top = self.top.prev
return temp
def peek(self):
return self.top.val
# Special Stack inherits Stack and has additional features like max()
class SpecialStack(Stack):
def __init__(self):
Stack.__init__(self)
self.maxStack = Stack() # maxStack is an ordinary stack that is used to hold the max values.
"""
push(x)
1) Push x into Special Stack
2) Compare x with the maxStack's top (y)
-> If x > y, push x onto maxStack
-> If y > x, push y onto maxStack
"""
def push(self, val):
Stack.push(self,val)
maxTop = self.getMaxTop()
if maxTop == None or maxTop <= val:
self.maxStack.push(val)
else:
self.maxStack.push(maxTop)
"""
pop()
1) Pop an element from maxStack
2) Pop and return an element from Special Stack
"""
def pop(self):
self.maxStack.pop()
return Stack.pop(self)
def getMaxTop(self):
return self.maxStack.peek()
def max(self):
return self.getMaxTop()
def main():
s = SpecialStack()
s.push(18)
print(s, s.maxStack, s.max())
s.push(19)
print(s, s.maxStack, s.max())
s.push(29)
print(s, s.maxStack, s.max())
s.push(15)
print(s, s.maxStack, s.max())
s.push(16)
print(s, s.maxStack, s.max())
s.pop()
print(s, s.maxStack, s.max())
s.pop()
print(s, s.maxStack, s.max())
s.pop()
print(s, s.maxStack, s.max())
s.pop()
print(s, s.maxStack, s.max())
s.pop()
print(s, s.maxStack, s.max())
if __name__ == "__main__":
main()