forked from TheAlgorithms/Python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpartition_linked_list.py
More file actions
175 lines (154 loc) · 5.11 KB
/
Copy pathpartition_linked_list.py
File metadata and controls
175 lines (154 loc) · 5.11 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
from __future__ import annotations
from dataclasses import dataclass
from typing import Any
@dataclass
class Node:
item: Any
next: Node | Any = None
class LinkedList:
def __init__(self) -> None:
self.head: Node | None = None
self.size = 0
def __str__(self) -> str:
"""
>>> linked_list = LinkedList()
>>> linked_list.add(23)
>>> linked_list.add(14)
>>> linked_list.add(9)
>>> print(linked_list)
9 --> 14 --> 23
"""
iterate = self.head
item_str = ""
item_list: list[str] = []
while iterate:
item_list.append(str(iterate.item))
iterate = iterate.next
item_str = " --> ".join(item_list)
return item_str
def __len__(self) -> int:
"""
>>> linked_list = LinkedList()
>>> len(linked_list)
0
>>> linked_list.add("a")
>>> len(linked_list)
1
>>> linked_list.add("b")
>>> len(linked_list)
2
"""
return self.size
def add(self, item: Any, position: int = 0) -> None:
"""
Add an item to the LinkedList at the specified position.
Default position is 0 (the head).
Args:
item (Any): The item to add to the LinkedList.
position (int, optional): The position at which to add the item.
Defaults to 0.
Raises:
ValueError: If the position is negative or out of bounds.
>>> linked_list = LinkedList()
>>> linked_list.add(1)
>>> linked_list.add(2)
>>> linked_list.add(3)
>>> linked_list.add(4, 2)
>>> print(linked_list)
3 --> 2 --> 4 --> 1
# Test adding to a negative position
>>> linked_list.add(5, -3)
Traceback (most recent call last):
...
ValueError: Position must be non-negative
# Test adding to an out-of-bounds position
>>> linked_list.add(5,7)
Traceback (most recent call last):
...
ValueError: Out of bounds
>>> linked_list.add(5, 4)
>>> print(linked_list)
3 --> 2 --> 4 --> 1 --> 5
"""
if position < 0:
raise ValueError("Position must be non-negative")
if position == 0 or self.head is None:
new_node = Node(item, self.head)
self.head = new_node
else:
current = self.head
for _ in range(position - 1):
current = current.next
if current is None:
raise ValueError("Out of bounds")
new_node = Node(item, current.next)
current.next = new_node
self.size += 1
def partition_liked_list(self, value: int) -> None:
"""
Partition the linked list based on node elements in order.
All nodes with elements less than value should occur on the left,
while those greater than or equal to value should occur on the right.
>>> linked_list = LinkedList()
>>> linked_list.add(1)
>>> linked_list.add(2)
>>> linked_list.add(3)
>>> linked_list.add(4, 2)
>>> linked_list.add(5, 4)
>>> print(linked_list)
3 --> 2 --> 4 --> 1 --> 5
>>> linked_list.partition_liked_list(3)
>>> print(linked_list)
2 --> 1 --> 3 --> 4 --> 5
>>> linked_list = LinkedList()
>>> linked_list.add(1)
>>> linked_list.add(2)
>>> linked_list.add(3)
>>> print(linked_list)
3 --> 2 --> 1
>>> linked_list.partition_liked_list(3)
>>> print(linked_list)
2 --> 1 --> 3
>>> linked_list = LinkedList()
>>> linked_list.add(5)
>>> linked_list.add(5)
>>> linked_list.add(5)
>>> print(linked_list)
5 --> 5 --> 5
>>> linked_list.partition_liked_list(5)
>>> print(linked_list)
5 --> 5 --> 5
>>> linked_list = LinkedList()
>>> linked_list.add(1, 0)
>>> linked_list.add(2, 1)
>>> linked_list.add(3, 2)
>>> linked_list.add(4, 3)
>>> linked_list.add(5, 4)
>>> print(linked_list)
1 --> 2 --> 3 --> 4 --> 5
>>> linked_list.partition_liked_list(6)
>>> print(linked_list)
1 --> 2 --> 3 --> 4 --> 5
>>> linked_list = LinkedList()
>>> linked_list.add(1)
>>> print(linked_list)
1
>>> linked_list.partition_liked_list(1)
>>> print(linked_list)
1
"""
if self.head is None:
return
less_nodes, greater_nodes = Node(0), Node(0)
current, current_less, current_greater = self.head, less_nodes, greater_nodes
while current is not None:
if current.item < value:
current_less.next = current
current_less = current_less.next
else:
current_greater.next = current
current_greater = current_greater.next
current = current.next
current_less.next = greater_nodes.next
current_greater.next = None
self.head = less_nodes.next