-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlinked-list.ts
287 lines (257 loc) · 7.09 KB
/
linked-list.ts
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
import { Comparator, ComparatorFunction } from "@/utils/comparator";
import { LinkedListNode } from "./linked-list-node";
/**
* Linked list data structure.
*/
export class LinkedList<Item> {
public head: LinkedListNode<Item> | null;
public tail: LinkedListNode<Item> | null;
private comparator: Comparator<Item>;
constructor(compareFn?: ComparatorFunction<Item>) {
this.head = null;
this.tail = this.head;
this.comparator = new Comparator(compareFn);
}
/**
* Prepends a node to the linked list.
* @param value
* @returns LinkedList
*/
public prepend(value: Item): LinkedList<Item> {
const newNode = new LinkedListNode(value, this.head);
this.head = newNode;
// If there is no tail yet let's make new node a tail.
if (!this.tail) {
this.tail = newNode;
}
return this;
}
/**
* Appends a node to the linked list.
* @param value to append.
* @returns LinkedList
*/
public append(value: Item): LinkedList<Item> {
const newNode = new LinkedListNode(value);
// If there is no head yet let's make new node a head.
if (!this.head) {
this.head = newNode;
this.tail = newNode;
return this;
}
// Attach new node to the end of linked list.
if (this.tail) {
this.tail.next = newNode;
}
this.tail = newNode;
return this;
}
/**
* Inserts a node to the linked list at the specified index.
* @param value to insert.
* @param rawIndex to insert.
* @returns LinkedList
*/
public insert(value: Item, rawIndex: number): LinkedList<Item> {
const index = rawIndex < 0 ? 0 : rawIndex;
if (index === 0) {
this.prepend(value);
} else {
let count = 1;
let currentNode = this.head;
const newNode = new LinkedListNode(value);
// Find the position to insert.
while (currentNode) {
if (count === index) break;
currentNode = currentNode.next;
count += 1;
}
if (currentNode) {
newNode.next = currentNode.next;
currentNode.next = newNode;
} else {
if (this.tail) {
this.tail.next = newNode;
this.tail = newNode;
} else {
this.head = newNode;
this.tail = newNode;
}
}
}
return this;
}
/**
* Deletes a node from the linked list by value.
* @param value to delete
* @returns deletedNode
*/
public delete(value: Item): LinkedListNode<Item> | null {
if (!this.head) {
// If there is no head then definitely the list is empty.
return null;
}
let deletedNode = null;
// If the head must be deleted then make next node head.
while (this.head && this.comparator.equal(this.head.value, value)) {
deletedNode = this.head;
this.head = this.head.next;
}
let currentNode = this.head;
if (currentNode !== null) {
// If next node must be deleted then make next node to be a next next one.
while (currentNode.next) {
if (this.comparator.equal(currentNode.next.value, value)) {
deletedNode = currentNode.next;
currentNode.next = currentNode.next.next;
} else {
currentNode = currentNode.next;
}
}
}
// Check if tail must be deleted.
if (this.tail && this.comparator.equal(this.tail.value, value)) {
this.tail = currentNode;
}
return deletedNode;
}
/**
* Deletes the head node.
* @returns deleted head node.
*/
public deleteHead(): LinkedListNode<Item> | null {
if (!this.head) {
return null;
}
const deletedHead = this.head;
if (this.head.next) {
this.head = this.head.next;
} else {
this.head = null;
this.tail = null;
}
return deletedHead;
}
/**
* Deletes the tail node.
* @returns deleted tail node.
*/
public deleteTail(): LinkedListNode<Item> | null {
const deletedTail = this.tail;
if (this.head === this.tail) {
// There is only one node in linked list.
this.head = null;
this.tail = null;
return deletedTail;
}
// If there are many nodes in linked list...
// Iterate to the one before the tail.
let currentNode = this.head;
while (currentNode?.next) {
// If next node is a tail...
if (!currentNode.next.next) {
// Set the next of the current node to be null.
// In this case the current node will become a new tail.
// Then the tail has been deleted.
currentNode.next = null;
} else {
currentNode = currentNode.next;
}
}
// Set the tail to be the last node.
this.tail = currentNode;
return deletedTail;
}
/**
* Finds a node by value.
* @param value to find.
* @returns found node or null.
*/
public find({
value,
callback,
}: {
value?: Item;
callback?: (item: Item) => boolean;
}): LinkedListNode<Item> | null {
// If there is no head then linked list is empty.
if (!this.head) {
return null;
}
let currentNode: LinkedListNode<Item> | null = this.head;
while (currentNode) {
// If callback is specified then try to find node by callback.
if (callback && callback(currentNode.value)) {
return currentNode;
}
// If value is specified then try to compare by value..
if (
value !== undefined &&
this.comparator.equal(currentNode.value, value)
) {
return currentNode;
}
currentNode = currentNode.next;
}
return null;
}
/**
* Generates a linked list from an array.
* @param values array of items to append to the linked list.
* @returns LinkedList
*/
public fromArray(values: Item[]): LinkedList<Item> {
values.forEach((value) => this.append(value));
return this;
}
/**
* Converts linked list to an array.
* @returns array of nodes.
*/
public toArray(): LinkedListNode<Item>[] {
const nodes: LinkedListNode<Item>[] = [];
let currentNode = this.head;
while (currentNode) {
nodes.push(currentNode);
currentNode = currentNode.next;
}
return nodes;
}
/**
* Reverses linked list.
* @returns reversed linked list.
*/
public reverse(): LinkedList<Item> {
let currNode = this.head;
let prevNode = null;
let nextNode = null;
while (currNode) {
// Next node in the original list.
nextNode = currNode.next;
// Invert the next pointer.
currNode.next = prevNode;
// Move prevNode and currNode one step forward.
prevNode = currNode;
currNode = nextNode;
}
// Reset head and tail.
this.tail = this.head;
this.head = prevNode;
return this;
}
/**
* Converts linked list to a string.
* @param callback to convert node to string.
* @returns string representation of the linked list.
* @example
* linkedList.toString(node => node.value)
* // returns "1,2,3,4,5"
* linkedList.toString(node => node.value + node.next.value)
* // returns "12,23,34,45"
*/
public toString(callback?: (item: Item) => string): string {
return this.toArray()
.map((node) => node.toString(callback))
.toString();
}
}