forked from realpacific/algorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstack_of_plates.py
68 lines (53 loc) · 1.46 KB
/
stack_of_plates.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
class StackWithThreshold:
def __init__(self):
self.stack = []
self.threshold = 6
def push(self, data):
self.stack.append(data)
def pop(self):
if len(self.stack) > 0:
return self.stack.pop()
return None
def __len__(self):
return len(self.stack)
def __str__(self):
return f"StackWithThreshold({self.stack})"
def __repr__(self):
return str(self)
class StackOfPlates:
def __init__(self):
self.stack_with_plates = []
def push(self, data):
latest_stack = None
if len(self.stack_with_plates) > 0:
latest_stack = self.peek()
if latest_stack is None or len(latest_stack) >= latest_stack.threshold:
self.stack_with_plates.append(StackWithThreshold())
self.peek().push(data)
def pop(self):
if len(self) == 0:
return None
latest_stack = self.peek()
latest_stack.pop()
if len(self.peek()) == 0:
self.stack_with_plates.pop()
def peek(self):
return self.stack_with_plates[-1]
def __len__(self):
return len(self.stack_with_plates)
def __str__(self):
return f"StackOfPlates({self.stack_with_plates})"
def __repr__(self):
return str(self)
sop = StackOfPlates()
for i in range(1, 20):
sop.push(i)
print(sop)
print('popping-----')
for i in range(0, 10):
sop.pop()
sop.pop()
sop.pop()
sop.pop()
sop.pop()
print(sop)