-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path15_LinkedListStack.py
63 lines (59 loc) · 1.1 KB
/
15_LinkedListStack.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
#C0d3 n0=15
#made By GuND0Wn151
class Node:
def __init__(self,value):
self.value=value
self.next=None
def push(self):
a=int(input("Enter the value "))
if self.value==None:
self.__int__(a)
else:
newnode=Node(a)
temp=self
while temp.next!=None:
temp=temp.next
temp.next=newnode
def pop(self):
if self.value==None:
print("Empty")
else:
temp=self
pretemp=None
while temp.next!=None:
pretemp=temp
temp=temp.next
pretemp.next=None
def display(self):
temp=self
l=[]
if temp.value==None:
print("Empty")
else:
l.append(temp.value)
while (temp.next!=None):
temp=temp.next
l.append(temp.value)
print("|-------|")
for i in l[::-1]:
print("| ",i," |")
print("|-------|")
if __name__=="__main__":
op=int(input("Enter Starting value"))
st=Node(op)
while True:
print("Stack Operations")
print("1.Push")
print("2.Pop")
print("3.Display")
print("4.Exit")
a=int(input("Enter your option "))
if a==1:
st.push()
elif a==2:
st.pop()
elif a==3:
st.display()
else:
break
print("Ended")