-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathds_ll_O_on_24_04.py
185 lines (169 loc) · 5.15 KB
/
ds_ll_O_on_24_04.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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
#creating linked list
from __future__ import print_function
#creating class node
class Node():
def __init__ (self,data=None,next=None):
self.data=data
self.next=next
#creating class linked list
class linkedList():
def __init__(self,name="Unknown linked list",head=None):
self.head=head
self.name=name
#inserting elements
#inserting at beg:
def insert_at_beginning(self,new_data):
if self.head is None:
new_node=Node(new_data)
new_node.next=self.head
self.head=new_node
return
first_node=self.head
new_node=Node(new_data)
new_node.next=first_node
self.head=new_node
#insert at end
def insert_at_end(self,new_data):
if self.head is None:
new_node=Node(new_data)
self.head=new_node
new_node.next=None
return
new_node=Node(new_data)
first_node=self.head
while first_node.next:
first_node=first_node.next
first_node.next=new_node
new_node.next=None
#insert at middle
def insert_at_middle(self,index,new_data):
if index<0 and index>self.get_length():
raise Exception("INVALID INDEX")
return
if self.head is None and index==0:
self.insert_at_beginning(new_data)
return
if index==0:
self.insert_at_beginning(new_data)
return
first_node=self.head
#new_node=Node(new_data)
count=0
while first_node.next:
if count==index-1:
new_node=Node(new_data)
new_node.next=first_node.next
first_node.next=new_node
first_node=first_node.next
count+=1
#removing_an_element_at_beg
def removing_an_element_at_beg(self):
n=self.head
if self.head is None:
print("Removing from {} EMPTY LINKED LIST is not Possible".format(n))
return
first_node=self.head
self.head=self.head.next
first_node=None
return
#removing_an_element_at_end
def removing_an_element_at_end(self):
n=self.head
length1=self.get_length()
if self.head is None:
print("Removing from {} EMPTY LINKED LIST is not Possible".format(n))
return
if length1 == 1:
self.removing_an_element_at_beg()
return
first_node=self.head
length2=length1-2
count=0
while first_node:
if count==length2:
first_node.next=first_node.next.next
return
first_node=first_node.next
count+=1
#removing an element at middle
def removing_an_element_at_middle(self,index):
n=self.name
if index<0 and index>self.get_length():
raise Exception("INVALID INDEX")
return
if self.head is None:
print("Removing from {} EMPTY LINKED LIST is not Possible".format(n))
return
if index==0:
self.removing_an_element_at_beg()
return
first_node=self.head
count=0
while first_node:
if count==index-1:
first_node.next=first_node.next.next
first_node=first_node.next
count+=1
return
#finding length of ll
def get_length(self):
n=self.name
if self.head is None:
print("LENGTH OF THE {0} IS 0 ".format(n))
return
first_node=self.head
count=0
while first_node:
first_node=first_node.next
count+=1
#print("LENGTH OF THE {0} IS {1} ".format(n,count))
return count
#printing linkedlist
def print_ll(self):
n=self.name
if self.head is None:
print("{0} is EMPTY LINKED LIST".format(n) )
return
first_node=self.head
string=" "
while first_node:
string=str(first_node.data)+" ---> "
first_node=first_node.next
print(string,end=" ")
print()
if __name__=="__main__":
l1=linkedList("linked list one")
l1.insert_at_beginning(25)
l1.insert_at_beginning(45)
l1.insert_at_beginning(65)
l1.insert_at_middle(0,75)
l1.insert_at_beginning(85)
l1.insert_at_middle(3,55)
l1.print_ll()
l1.removing_an_element_at_beg()
l1.print_ll()
l1.insert_at_beginning(85)
l1.print_ll()
l1.removing_an_element_at_end()
l1.removing_an_element_at_end()
l1.removing_an_element_at_end()
l1.removing_an_element_at_end()
l1.removing_an_element_at_end()
l1.removing_an_element_at_end()
l1.removing_an_element_at_end()
l1.removing_an_element_at_end()
l1.print_ll()
l2=linkedList("linked list two")
l2.insert_at_end(1)
l2.insert_at_end(2)
l2.insert_at_end(3)
l2.insert_at_end(4)
l2.print_ll()
l2.removing_an_element_at_end()
l2.print_ll()
l2.removing_an_element_at_end()
l2.print_ll()
l2.removing_an_element_at_end()
l2.print_ll()
l2.removing_an_element_at_end()
l2.print_ll()