-
Notifications
You must be signed in to change notification settings - Fork 0
/
llexe.py
235 lines (190 loc) · 5.59 KB
/
llexe.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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
# class Node:
# def __init__(self, data=None, next=None):
# self.data = data
# self.next = next
#
# class Linked_list:
# def __init__(self):
# self.head = None
# def insert_begining(self,data):
# node = Node(data, self.head)
# self.head = node
#
# def print_list(self):
# if self.head is None:
# print("The linked list is empty. ")
# return
# current = self.head
# string = ""
# while current != None:
# string += str(current.data) + "-->"
# current = current.next
#
# print(string)
#
# def insert_end(self,data):
# if self.head is None:
# self.head = Node(data, None)
# return
#
# current = self.head
# while current.next != None:
# current = current.next
#
# current.next = Node(data,None)
# def insert_values(self, data_list):
# self.head = None
# for data in data_list:
# self.insert_end(data)
#
# def get_length(self):
# count = 0
# current = self.head
# while current != None:
# count += 1
# current = current.next
# return count
#
# def remove_at(self,index):
# if index < 0 or index >= self.get_length():
# raise Exception ("The index is invalid")
# if index == 0:
# self.head = self.head.next
# return
# current = self.head
# count = 0
# while current.next != None:
# if count == index-1:
# current.next = current.next.next
# break
# current = current.next
# count += 1
#
# def insert_at(self,index,data):
# if index < 0 or index >= self.get_length():
# raise Exception ("The index is invalid")
# if index == 0:
# self.insert_begining(data)
#
# current = self.head
# count = 0
# while current.next != None:
# if count == index-1:
# node = Node(data, current.next)
# current.next = node
# break
# current = current.next
# count += 1
#
# def insert_after_value(self, data_after, data_to_insert ):
# if self.head is None:
# return
#
# if self.head.data == data_after:
# node = Node(data_to_insert,self.head.next)
#
# current = self.head
# while current != None:
# if current.data == data_after:
# node = Node(data_to_insert, current.next)
# current.next = node
# current = current.next
#
#
# def remove_by_value(self,data):
# if self.head is None:
# return
#
# if self.head.data == data:
# self.head = self.head.next
# return
#
# current = self.head
# while current.next != None:
# if current.next.data == data:
# current.next = current.next.next
# current = current.next
#
# def get_last_node(self):
# current = self.head
# while current.next != None:
# current = current.next
#
# return current
# Implementing a double linked list
class Node:
def __init__(self, data=None, next= None, prev=None):
self.data = data
self.next = next
self.prev = prev
class Linked_list:
def __init__(self):
self.head = None
def get_last_node(self):
current = self.head
while current != None:
current = current.next
return current
def print_forward(self):
if self.head is None:
print("The linked list is empty.")
current = self.head
empty = ""
while current.next != None:
empty += str(current.data) + "-->"
current = current.next
print(empty)
def print_back(self):
if self.head is None:
print("The list is empty")
return
current = self.get_last_node()
empty = ""
while current:
empty += current.data + "-->"
current = current.prev
print("The linked list printed backwards:", empty)
# def insert_begining(self,data):
# node = Node(data, self.head, None)
# self.head.prev = node
# self.head = node
def insert_at_begining(self, data):
node = Node(data, self.head, None)
self.head.prev = node
self.head = node
def insert_end(self,data):
if self.head is None:
self.head = Node(data,None,None)
return
current = self.head
while current.next != None:
current = current.next
current.next = Node(data,None,current)
def insert_values(self, data_list):
self.head = None
for data in data_list:
self.insert_end(data)
# gl = Linked_list()
# gl.insert_at_begining(5)
# gl.insert_at_begining(6)
# gl.insert_at_begining(7)
# gl.insert_at_begining(8)
# gl.print_forward()
# gl.print_back()
ll = Linked_list()
ll.insert_values(["banana","mango","grapes","orange"])
ll.print_forward()
ll.print_back()
# ll.get_last_node()
# # ll.remove_by_value("grapes")
# # ll.insert_after_value("banana","apple")
# ll.print_list()
# il = Linked_list()
# il.insert_end(5)
# il.insert_end(6)
# il.insert_end(7)
# il.insert_end(8)
# il.insert_at(0,7)
# # il.remove_at(0)
# print("The count is:", il.get_length())
# il.print_list()