-
Notifications
You must be signed in to change notification settings - Fork 0
/
doublyLinkedLists.js
473 lines (338 loc) · 14.5 KB
/
doublyLinkedLists.js
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
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
(function (global) {
var DLinkedList = function () {
return new DoublyLinkedList();
}
// function constructor for doubly linked lists
var DoublyLinkedList = function () {
this._size = 0;
this.head = null;
this.tail = null;
}
DoublyLinkedList.prototype = {
Node: function (data) {
this.previous = null;
this.data = data;
this.next = null;
},
// insert new node at the front of the list
insertLeft: function (data) {
var current = this.head,
newNode = new this.Node(data);
// if list is empty set head and tail equal to newNode
if (this._size === 0) {
this.tail = this.head = newNode;
}
else {
// set head equal to newNode
newNode.next = current;
current.previous = newNode;
this.head = newNode;
}
this._size++;
return newNode;
},
// delete first node in the list
deleteLeft: function () {
var deleted;
// if list contains at least one node
if (this._size > 0) {
// head will be deleted
deleted = this.head;
// if list contains only one node, delete head and tail
if (this._size === 1) {
this.head = this.tail = null;
this._size--;
return deleted;
}
// delete head and set new head equal to the following node
this.head = this.head.next;
this.head.previous = null;
this._size--;
return deleted;
}
// throw an error if list is empty
throw new Error('No node to delete');
},
// insert node at the end of the list
insertRight: function (data) {
var current = this.tail,
newNode = new this.Node(data);
// if list is empty set tail and head equal to newNode
if (this._size === 0) {
this.tail = this.head = newNode;
}
else {
// set tail equal to newNode
newNode.previous = current;
current.next = newNode;
this.tail = newNode;
}
this._size++;
return newNode;
},
// delete last node in the list
deleteRight: function () {
var deleted;
// if list contains at least one node
if (this._size > 0) {
deleted = this.tail;
// if list contains only one node, delete head and tail
if (this._size === 1) {
this.head = this.tail = null;
this._size--;
return deleted;
}
// set tail to the previous node
this.tail = this.tail.previous;
this.tail.next = null;
this._size--;
return deleted;
}
// throw an error if list is empty
throw new Error('No node to delete');
},
_searchFromLeft: function (position) {
// start crawling from head
var index = 1,
current = this.head;
// crawl until position reached
while (index < position) {
current = current.next;
index++;
}
return current;
},
_searchFromRight: function (position) {
// start crawling from tail
var index = this._size,
current = this.tail;
// crawl until position reached
while (index > position) {
current = current.previous;
index--;
}
return current;
},
searchAt: function (position) {
// if position is within bounds of list
if (position >= 1 && position <= this._size) {
// find middle of list to determine shortest way to search
var middle = Math.ceil(this._size / 2);
// if position is in first half of list
if (position <= middle) {
// search by crawling from front
return this._searchFromLeft(position);
}
else {
// search by crawling from end
return this._searchFromRight(position);
}
}
throw new Error('Position out of bounds');
},
_makeActionAt: function (action) {
return function (position, data) {
// if position is within bounds of list
if (position >= 1 && position <= this._size) {
// find middle of list to determine shortest way to access node
var middle = Math.ceil(this._size / 2),
newNode,
previous,
current,
next;
// if action is to insert, declare a newNode with `data`
if (action === 'insert') {
newNode = new this.Node(data);
}
// if position is in first half of list
if (position <= middle) {
if (position === 1) {
if (action === 'insert') {
// set head equal to new node
return this.insertLeft(data);
}
if (action === 'delete') {
// delete head
return this.deleteLeft();
}
}
// declare current by finding it searching from the left
current = this._searchFromLeft(position);
}
// if position in second half of list
else {
// if position is tail's position and action is to delete, delete tail
if (position === this._size && action === 'delete') {
return this.deleteRight();
}
// declare current by finding it seach from the right
current = this._searchFromRight(position);
}
if (action === 'insert') {
previous = current.previous;
// insert newNode at position
previous.next = newNode;
current.previous = newNode;
newNode.previous = previous;
newNode.next = current;
this._size++;
return newNode;
}
if (action === 'delete') {
previous = current.previous;
next = current.next;
// delete current node
next.previous = previous;
previous.next = next;
this._size--;
return current;
}
}
throw new Error('Position out of bounds');
};
},
// insert node at specified position
insertAt: function (position, data) {
this._makeActionAt('insert').call(this,position,data);
},
// insert node at specified position
deleteAt: function (position, data) {
this._makeActionAt('delete').call(this,position);
},
// delete first node found containing the specified data
deleteNode: function (data) {
var current = this.head,
next,
previous;
if (this._size > 0) {
if (this._size === 1) {
// delete head and tail
if ( data === current.data) {
this.head = this.tail = null;
this._size--;
return true;
}
}
else {
// if head contains data, delete head
if (data === this.head.data) {
this.head = this.head.next;
this.head.previous = null;
this._size--;
return true;
}
// if tail contains data, delete data
else if (data === this.tail.data) {
this.tail = this.tail.previous;
this.tail.next = null;
this._size--;
return true;
}
else {
// crawl thorugh list , excluding head and tail, until data is found and delete the node cointaining it
for (var i = 1; i < this._size - 1; i++) {
previous = current;
current = current.next;
next = current.next;
if (data === current.data) {
previous.next = next;
next.previous = previous;
this._size--;
return true;
}
}
}
}
}
// if node isn't throw an error
throw new Error('The specified node was not found');
},
// logs the full list from head to tail
displayForward: function () {
var current = this.head,
string = '';
// crawl through every nodes, appending each data to string
while (current.next) {
string += (current.data + ',');
current = current.next;
}
string += (current.data);
return string;
},
// logs the full list from tail to head
displayBackward: function () {
var current = this.tail,
string = '';
// crawl through every nodes, appending each data to string
while (current.previous) {
string += (current.data + ',');
current = current.previous;
}
string += (current.data);
return string;
},
// get size of list
getSize: function (){
return this._size;
},
// delete all elements from list
clear: function (){
this.head = this.tail = null;
this._size = 0;
},
// swap element at positionLeft with element at positionRight, assuming the fact that positions
// are opposites when taking the middle of the list as separation
_swap: function (positionLeft, positionRight) {
var positions = {Left: positionLeft, Right: positionRight},
positionKeys = Object.keys(positions),
container = {};
// create properties for left and right node being swapped
for (var i = 0; i < positionKeys.length; i++) {
var side = positionKeys[i];
container['current' + side] = this.searchAt(positions[side]);
container['previous' + side] = container['current' + side].previous;
container['next' + side] = container['current' + side].next;
}
// if left node is not head
if (container.previousLeft !== null) {
container.previousLeft.next = container.currentRight;
}
// if right node is not tail
if (container.nextRight !== null) {
container.nextRight.previous = container.currentLeft;
}
// if left node and right node are head and tail
if (container.previousLeft === null && container.nextRight === null) {
this.head = container.currentRight;
this.tail = container.currentLeft;
}
// if left node and right node are next to each other
if (container.currentLeft === container.previousRight && container.currentRight === container.nextLeft) {
container.currentLeft.previous = container.currentRight;
container.currentRight.next = container.currentLeft;
}
else {
container.currentLeft.previous = container.previousRight;
container.currentRight.next = container.nextLeft;
container.nextLeft.previous = container.currentRight;
container.previousRight.next = container.currentLeft;
}
container.currentLeft.next = container.nextRight;
container.currentRight.previous = container.previousLeft;
},
// reverse the list
reverse: function () {
var indexLeft = 1,
indexRight = this._size;
// keep swapping elements until indexLeft and indexRight are equal
while (indexLeft < indexRight) {
this._swap(indexLeft, indexRight);
indexLeft++;
indexRight --;
}
},
reversed: function () {
}
};
global.DLinkedList = DLinkedList;
}(window));