-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathstack.py
108 lines (85 loc) · 2.24 KB
/
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
106
107
108
import os
class Stack:
def __init__(self):
'''
Initialises a empty list which will be used as Stack array.
'''
self._data = []
def __len__(self):
'''
Returns length of Stack>
'''
return len(self._data)
def isempty(self):
'''
Returns True if stack is empty, else False.
'''
return len(self._data) == 0
def push(self, e):
'''
Pushes the passed element(e) on the stack.
'''
self._data.append(e)
def pop(self):
'''
Removes the element on the top and returns it.
'''
if self.isempty():
print("Stack is Empty")
return
return self._data.pop()
def top(self):
'''
Peeks at the element on the top of the stack.
'''
if self.isempty():
print("Stack is Empty")
return
return self._data[-1]
def display(self):
'''
Utility function to display the stack.
'''
if self.isempty():
print("Stack is Empty")
return
print("Stack:")
for item in reversed(self._data):
print(item)
###############################################################################
def options():
'''
Prints Menu for operations
'''
options_list = ['Push', 'Pop', 'Top',
'Display Stack', 'Exit']
print("MENU")
for i, option in enumerate(options_list):
print(f'{i + 1}. {option}')
choice = int(input("Enter choice: "))
return choice
def switch_case(choice):
'''
Switch Case for operations
'''
os.system('cls')
if choice == 1:
elem = int(input("Enter Item: "))
S.push(elem)
elif choice == 2:
print('Popped item is: ', S.pop())
elif choice == 3:
print("Item on top is: ", S.top())
elif choice == 4:
print("Stack: ", end='')
S.display()
print("\n")
elif choice == 5:
import sys
sys.exit()
###############################################################################
if __name__ == '__main__':
S = Stacks()
while True:
choice = options()
switch_case(choice)