-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathdelete_node_from_linked_list.py
87 lines (69 loc) · 1.54 KB
/
delete_node_from_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
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
#!/usr/bin/python
# Date: 2018-09-16
#
# Description:
# Delete a node of a singly linked list, given only access to that node.
#
# Approach:
# As we don't have access to head, we can't go back or so. We can copy the data
# from next node to this and delete the next node.
#
# Note: If reference to last node is given then we can't follow this approach.
#
# Complexity:
# O(1)
class Node:
def __init__(self, data):
self.data = data
self.next = None
class LinkedList:
def __init__(self):
self.head = None
def traverse(self):
current = self.head
while current:
print current.data
current = current.next
def insert_at_end(self, data):
new_node = Node(data)
if self.head is None:
self.head = new_node
return None
current = self.head
while current.next:
current = current.next
current.next = new_node
def delete_node(self, node):
"""
Deletes given node from linked list.
Args:
node: Reference of node to be deleted.
"""
next_node = node.next
node.data = next_node.data
node.next = next_node.next
def main():
linked_list = LinkedList()
linked_list.insert_at_end(1)
linked_list.insert_at_end(2)
linked_list.insert_at_end(3)
linked_list.insert_at_end(4)
linked_list.insert_at_end(5)
linked_list.traverse()
print ('\nRemoving third node')
linked_list.delete_node(linked_list.head.next.next)
linked_list.traverse()
if __name__ == '__main__':
main()
# Output:
# -------------
# 1
# 2
# 3
# 4
# 5
# Removing third node
# 1
# 2
# 4
# 5