-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathstack-linked.py
94 lines (73 loc) · 2.17 KB
/
stack-linked.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
# Copyright (C) Deepali Srivastava - All Rights Reserved
# This code is part of DSA course available on CourseGalaxy.com
class EmptyStackError(Exception):
pass
class Node:
def __init__(self,value):
self.info = value
self.link = None
class Stack:
def __init__(self):
self.top = None
def is_empty(self):
return self.top == None
def size(self):
if self.is_empty():
retun 0
count=0
p = self.top
while p is not None:
count+=1
p = p.link
return count
def push(self, data):
temp = Node(data)
temp.link = self.top
self.top = temp
def peek(self):
if self.is_empty():
raise EmptyStackError("Stack is empty")
return self.top.info
def pop(self):
if self.is_empty():
raise EmptyStackError("Stack is empty")
popped = self.top.info
self.top = self.top.link
return popped
def display(self):
if self.is_empty():
print("Stack is empty")
return
print("Stack is : ")
p = self.top
while p is not None:
print(p.info , " ")
p = p.link
#####################################################################################
if __name__ == "__main__":
st = Stack()
while True:
print("1.Push")
print("2.Pop")
print("3.Peek")
print("5.Size")
print("4.Display")
print("6.Quit")
choice = int(input("Enter your choice : "))
if choice == 1:
x=int(input("Enter the element to be pushed : "))
st.push(x)
elif choice == 2:
x=st.pop()
print("Popped element is : " , x)
elif choice == 3:
print("Element at the top is : " , st.peek())
elif choice == 4:
print("Size of stack " , st.size())
elif choice == 5:
st.display()
elif choice == 6:
break;
else:
print("Wrong choice")
print()