-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathllists.py
More file actions
429 lines (301 loc) · 9.27 KB
/
llists.py
File metadata and controls
429 lines (301 loc) · 9.27 KB
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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
import copy
from typing import List, Any, Tuple
class Node:
"""Represents a node of a linked list.
Args:
data: the data to save in the node.
"""
def __init__(self, data: Any):
self.data = data
self.next = None
def __repr__(self):
return self.data
class LinkedList:
"""Represents a Linked List.
Args:
items: list of items to insert.
"""
def __init__(self, items: List[Any] = None):
self.head = None
if items is not None:
node = Node(data=items[0])
self.head = node
self.add_items(items[1:])
def __repr__(self):
items = self.tolist()
items.append("None")
return " -> ".join([str(i) for i in items])
def __iter__(self):
node = self.head
while node is not None:
yield node
node = node.next
def __len__(self):
size, _ = self.size_and_tail()
return size
def __eq__(self, other):
if not isinstance(other, LinkedList):
raise ValueError("A LinkedList can only be compared to another LinkedList.")
one = self.head
two = other.head
while one is not None and two is not None:
if not one.data == two.data:
return False
one = one.next
two = two.next
return one is None and two is None
def tolist(self):
"""Converts linked list to list."""
node = self.head
items = []
while node is not None:
items.append(node.data)
node = node.next
return items
def tostring(self):
return ''.join(map(str, self.tolist()))
def add_node(self, node: Node):
"""Inserts a node at the end of the linked-list."""
last_node = self.get_last()
last_node.next = node
def add_items(self, items: List[Any]):
"""Inserts list of items at the end of the linked list."""
tail = self.head
while tail.next is not None:
tail = tail.next
for item in items:
tail.next = Node(data=item)
tail = tail.next
def get_node(self, data):
"""Returns the node with provided data. If more than one, first is returned."""
node = None
for n in self:
if n.data == data:
node = n
break
return node
def get_last(self):
"""Returns last node."""
node = None
for n in self:
node = n
return node
def at(self, idx):
"""Returns node at index idx."""
i = 0
for node in self:
if i == idx:
return node
i += 1
raise ValueError("index {} out of bounds for list: {}!".format(idx, self.tolist()))
def reverse(self):
"""Reverses the linked list in-place.
Complexity:
- Time: O(N).
- Space: O(1)
"""
_prev = None
_current = self.head
while _current is not None:
_next = _current.next
_current.next = _prev
_prev = _current
_current = _next
self.head = _prev
def size_and_tail(self):
"""Returns the size and tail of linked-list."""
i = 0
node = None
for n in self:
node = n
i += 1
return i, node
def remove_duplicates(llist: LinkedList) -> None:
"""Removes duplicates (in-place) from a linked list.
Complexity:
- Time: O(N)
- Space: O(N)
Notes:
If memory is important, an alternative with O(1) space can be implemented.
In that case we can iterate the linked list with two runners (TODO).
The time complexity in that case is O(N^2).
"""
data = set()
prev = llist.head
for node in llist:
if node.data in data:
prev.next = node.next
prev = node
continue
data.add(node.data)
prev = node
def kth_to_last(llist: LinkedList, k: int, size: int = None) -> Node:
"""Returns the kth element, counting from the last.
Time Complexity:
- Time: O(N).
- Space: O(1).
"""
if size is not None:
k = size - k
i = 0
k_node = None
for node in llist:
if i == k:
k_node = node
i += 1
if k_node is None:
raise ValueError("size parameter was greater than real size of linked list.")
return k_node
p1 = llist.head
p2 = llist.head
i = 0
while i < k:
p1 = p1.next
if p1 is None:
raise ValueError("k parameter was greater than the size of the linked list")
i += 1
while p1 is not None:
p1 = p1.next
p2 = p2.next
return p2
def kth_to_last_recursive(head: Node, k: int) -> Tuple[Node, int]:
"""Returns the kth element, counting from the last, with a recursive approach.
Time Complexity:
- Time: O(N).
- Space: O(N).
"""
if head is None:
return head, 0
node, i = kth_to_last_recursive(head.next, k)
i += 1
if i == k:
return head, i
return node, i
def delete_middle_node(node: Node) -> None:
"""Deletes a middle node from a linked-list.
Complexity:
- Time: O(1).
- Space: (1).
"""
if node.next is None:
raise ValueError("node is not a middle one!")
node.data = node.next.data
node.next = node.next.next
def partition(llist: LinkedList, x: int) -> LinkedList:
"""Partition a linked list around value x.
Complexity:
- Time: O(N).
- Space: O(1).
"""
head = llist.head
node = head.next
_prev = head
while node is not None:
_next = node.next
if node.data < x:
_prev.next = node.next
node.next = head
head = node
else:
_prev = node
node = _next
llist.head = head
return llist
def sum(l1: LinkedList, l2: LinkedList) -> LinkedList:
"""Sum of two numbers represented by linked lists.
The algorithm assumes the numbers are represented in reversed order.
Complexity:
Time: O(N).
Space: O(N).
Where N is max(A, B), and A, B the lengths of l1 and l2, respectively.
Returns:
the sum represented as a linked-list.
"""
l1_numbers = l1.tolist()[::-1]
l2_numbers = l2.tolist()[::-1]
l1_int = int(''.join(map(str, l1_numbers)))
l2_int = int(''.join(map(str, l2_numbers)))
l3_int = l1_int + l2_int
l3_numbers = [int(x) for x in str(l3_int)]
return LinkedList(l3_numbers[::-1])
def is_palindrome(llist: LinkedList, method: str = 'reverse') -> bool:
"""Checks if the items in a linked-list form a palindrome.
Complexity:
- Time: O(N).
- Space: O(N).
"""
METHODS = ['iterative', 'reverse', 'recursive']
if method not in METHODS:
raise ValueError("Method {} not valid. Choose from {}".format(method, METHODS))
if method == 'reverse':
llist_copy = copy.deepcopy(llist)
llist.reverse()
return llist_copy == llist
elif method == 'iterative':
stack = []
p1 = llist.head
p2 = llist.head
while p1 is not None and p1.next is not None:
stack.append(p2.data)
p1 = p1.next.next
p2 = p2.next
if p1 is not None: # odd number of elements. Delete middle one.
p2 = p2.next
while p2 is not None:
if not p2.data == stack.pop():
return False
p2 = p2.next
return True
else:
def recursive(head: Node, length: int):
if head is None or length <= 0:
return head, True
if length == 1:
return head.next, True
node, is_palindrome = recursive(head.next, length - 2)
if not is_palindrome or node is None:
return node, is_palindrome
return node.next, head.data == node.data
_, res = recursive(llist.head, len(llist))
return res
def intersection(l1: LinkedList, l2: LinkedList):
"""Finds an intersecting node between l2 and l2 linked-lists."""
l1_len, l1_tail = l1.size_and_tail()
l2_len, l2_tail = l2.size_and_tail()
if l1_len == 0 or l2_len == 0:
return False, None
if l1_tail is not l2_tail:
return False, None
len_diff = abs(l1_len - l2_len)
p1 = l1.head
p2 = l2.head
if l1_len > l2_len:
p1 = l1.at(len_diff)
if l2_len > l1_len:
p2 = l2.at(len_diff)
while p1 is not None:
if p1 is p2:
break
p1 = p1.next
p2 = p2.next
return True, p1
def loop_detection(llist: LinkedList):
"""Detects a loop in the linked-list and returns the beginning of the loop.
Complexity:
- Time: O(N).
- Space: O(1).
"""
slow = llist.head
fast = llist.head
while fast is not None and fast.next is not None:
slow = slow.next
fast = fast.next.next
if slow is fast:
break # LOOP_SIZE - k steps.
if slow is None or fast.next is None:
return None
slow = llist.head
while slow is not fast:
slow = slow.next
fast = fast.next
return slow