-
Notifications
You must be signed in to change notification settings - Fork 0
/
solution6.py
155 lines (110 loc) · 3.36 KB
/
solution6.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
class Node:
def __init__(self, value):
self.value = value
self.next = None
def __repr__(self):
return str(self.value)
class LinkedList:
def __init__(self):
self.head = None
def __str__(self):
cur_head = self.head
out_string = ""
while cur_head:
out_string += str(cur_head.value) + " -> "
cur_head = cur_head.next
return out_string
def append(self, value):
if self.head is None:
self.head = Node(value)
return
node = self.head
while node.next:
node = node.next
node.next = Node(value)
def size(self):
size = 0
node = self.head
while node:
size += 1
node = node.next
return size
def union(llist_1, llist_2):
elements = set()
node = llist_1.head
new_list = LinkedList()
while node:
if node.value not in elements:
elements.add(node.value)
new_list.append(node)
node = node.next
node = llist_2.head
while node:
if node.value not in elements:
elements.add(node.value)
new_list.append(node)
node = node.next
return new_list
def intersection(llist_1, llist_2):
elements = set()
node = llist_1.head
new_list = LinkedList()
while node:
if node.value not in elements:
elements.add(node.value)
node = node.next
node = llist_2.head
while node:
if node.value in elements:
elements.remove(node.value)
new_list.append(node)
node = node.next
return new_list
def test_fill_and_fill_common():
linked_list_1 = LinkedList()
linked_list_2 = LinkedList()
element_1 = [3, 2, 4, 35, 6, 65, 6, 4, 3, 21]
element_2 = [6, 32, 4, 9, 6, 1, 11, 21, 1]
for i in element_1:
linked_list_1.append(i)
for i in element_2:
linked_list_2.append(i)
print("union", union(linked_list_1, linked_list_2))
print("intersection", intersection(linked_list_1, linked_list_2))
def test_fill_and_fill():
linked_list_3 = LinkedList()
linked_list_4 = LinkedList()
element_1 = [3, 2, 4, 35, 6, 65, 6, 4, 3, 23]
element_2 = [1, 7, 8, 9, 11, 21, 1]
for i in element_1:
linked_list_3.append(i)
for i in element_2:
linked_list_4.append(i)
print("union", union(linked_list_3, linked_list_4))
print("intersection", intersection(linked_list_3, linked_list_4))
def test_empty_and_empty():
linked_list_3 = LinkedList()
linked_list_4 = LinkedList()
element_1 = []
element_2 = []
for i in element_1:
linked_list_3.append(i)
for i in element_2:
linked_list_4.append(i)
print("union", union(linked_list_3, linked_list_4))
print("intersection", intersection(linked_list_3, linked_list_4))
def test_fill_and_empty():
linked_list_3 = LinkedList()
linked_list_4 = LinkedList()
element_1 = [3, 2, 4, 35, 6, 65, 6, 4, 3, 23]
element_2 = []
for i in element_1:
linked_list_3.append(i)
for i in element_2:
linked_list_4.append(i)
print("union", union(linked_list_3, linked_list_4))
print("intersection", intersection(linked_list_3, linked_list_4))
test_fill_and_fill_common()
test_fill_and_fill()
test_empty_and_empty()
test_fill_and_empty()