forked from geekcomputers/Python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDelete_Linked_List.py
58 lines (51 loc) · 1.43 KB
/
Delete_Linked_List.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
class Node:
def __init__(self, data):
self.data = data
self.next = None
class Linked_List:
def __init__(self):
self.head = None
def Insert_At_End(self, new_data):
new_node = Node(new_data)
if self.head is None:
self.head = new_node
return
current = self.head
while current.next:
current = current.next
current.next = new_node
def Delete(self, key):
temp = self.head
if temp is None:
return "Can't Delete!"
else:
if temp.data == key:
self.head = temp.next
temp = None
while temp is not None:
prev = temp
temp = temp.next
curr = temp.next
if temp.data == key:
prev.next = curr
return
def Display(self):
temp = self.head
while temp:
print(temp.data, "->", end=" ")
temp = temp.next
print("None")
if __name__ == "__main__":
L_list = Linked_List()
L_list.Insert_At_End(1)
L_list.Insert_At_End(2)
L_list.Insert_At_End(3)
L_list.Insert_At_End(4)
L_list.Insert_At_End(5)
L_list.Insert_At_End(6)
L_list.Insert_At_End(7)
print("Linked List: ")
L_list.Display()
print("Deleted Linked List: ")
L_list.Delete(3)
L_list.Display()