-
Notifications
You must be signed in to change notification settings - Fork 40
/
remove_duplicates_from_linked_list.py
98 lines (81 loc) · 1.74 KB
/
remove_duplicates_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
88
89
90
91
92
93
94
95
96
97
98
#!/usr/bin/python
# Date: 2018-09-16
#
# Description:
# Remove duplicates from a singly linked list.
#
# Approach:
# Use a map/set to keep track of elements are seen before and they appear again
# delete from linked list.
#
# Note: To do this problem without space, we can traverse with 2 pointers and
# nested, it will require O(n^2) time.
#
# Complexity:
# O(n) time, O(n) space
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 remove_duplicates(self):
"""Removes duplicate from a linked list."""
values = set()
current = self.head
while current:
if current.data in values:
prev.next = current.next
else:
values.add(current.data)
prev = current
current = current.next
def main():
linked_list = LinkedList()
linked_list.insert_at_end(1)
linked_list.insert_at_end(1)
linked_list.insert_at_end(2)
linked_list.insert_at_end(3)
linked_list.insert_at_end(2)
linked_list.insert_at_end(4)
linked_list.insert_at_end(1)
linked_list.insert_at_end(5)
linked_list.insert_at_end(5)
linked_list.traverse()
print ('\nDuplicates removed:')
linked_list.remove_duplicates()
linked_list.traverse()
if __name__ == '__main__':
main()
# Output:
# -------------
# 1
# 1
# 2
# 3
# 2
# 4
# 1
# 5
# 5
# Duplicates removed:
# 1
# 2
# 3
# 4
# 5