-
Notifications
You must be signed in to change notification settings - Fork 0
/
19 Singly Linked Lists.js
742 lines (681 loc) · 19.4 KB
/
19 Singly Linked Lists.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
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
/* SINGLY LINKED LISTS */
/* Intro to Singly Linked Lists */
// What is a linked list?
//
// A data structure that contains a head, tail
// and length property.
// Linked Lists consist of nodes, and each node
// has a value and a pointer to another node
// or null.
// head length=4 tail
// ^______________ ^
// || ||
// 4 -> 6 -> 8 -> 2
// Comparisons with Arrays
// Lists
// * Do not have indexes!
// * Connected via nodes with a next pointer
// * Random access is not allowed
// Arrays
// * Indexed in order!
// * Insertion and deletion can be expensive
// * Can quickly be accessed at a specific index
/* Starter Code and Push Intro */
(() => {
// // Node - piece of data, that reference to next nod
// class Node {
// constructor(val) {
// this.val = val;
// this.next = null;
// }
// }
// // var first = new Node("Hi");
// // first.next = new Node("there")
// // first.next.next = new Node("how")
// // first.next.next.next = new Node("are")
// // first.next.next.next.next = new Node("you")
// class SinglyLinkedList {
// constructor() {
// this.head = null;
// this.tail = null;
// this.length = 0;
// }
// push(val) {
// // some code
// }
// }
// var list = new SinglyLinkedList();
// list.push('HELLO');
// list.push('HI');
// list.push('GOODBYE');
// console.log(list);
})();
// Push method
// (Adding a new node to the end of the Linked List)!
// Pushing pseudocode
// * This function should accept a value
// * Create a new node using the value passed
// to the function
// * If there is no head property on the list,
// set the head and tail to be the newly
// created node
// * Otherwise set the next property on the
// tail to be the new node and set the tail
// property on the list to be the newly
// created node
// * Increment the length by one.
/* Singly Linked List Push Solution */
(() => {
// // Node - piece of data, that reference to next nod
// class Node {
// constructor(val) {
// this.val = val;
// this.next = null;
// }
// }
// class SinglyLinkedList {
// constructor() {
// this.head = null;
// this.tail = null;
// this.length = 0;
// }
// // // My push function implementation. Works perfectly
// // push(val) {
// // let node = new Node(val);
// // if (this.length === 0) {
// // this.head = node;
// // this.tail = node;
// // this.length++;
// // } else if (this.length >= 1) {
// // this.tail.next = node;
// // this.tail = node;
// // this.length++;
// // }
// // }
// // Author's push function implementation.
// push(val) {
// var newNode = new Node(val);
// if (!this.head) {
// this.head = newNode;
// this.tail = this.head;
// } else {
// this.tail.next = newNode;
// this.tail = newNode;
// }
// this.length++;
// return this;
// }
// }
// var list = new SinglyLinkedList();
// list.push('HELLO');
// list.push('HI');
// list.push('GOODBYE');
// console.log(list);
// // > SinglyLinkedList {
// // > head: Node { val: 'HELLO', next: Node { val: 'HI', next: [Node] } },
// // > tail: Node { val: 'GOODBYE', next: null },
// // > length: 3
// // > }
})();
/* Singly Linked List Pop Intro */
// Popping
// Removeing a node from the end of the Linked List!
// Node - piece of data, that reference to next node
(() => {
// class Node {
// constructor(val) {
// this.val = val;
// this.next = null;
// }
// }
// class SinglyLinkedList {
// constructor() {
// this.head = null;
// this.tail = null;
// this.length = 0;
// }
// // // My push function implementation. Works perfectly
// // push(val) {
// // let node = new Node(val);
// // if (this.length === 0) {
// // this.head = node;
// // this.tail = node;
// // this.length++;
// // } else if (this.length >= 1) {
// // this.tail.next = node;
// // this.tail = node;
// // this.length++;
// // }
// // }
// // My pop function implementation. Works perfectly
// pop() {
// if (this.length > 1) {
// let node = this.head;
// while (node.next != this.tail) {
// node = node.next;
// }
// this.tail = node;
// let poped = this.tail.next;
// this.tail.next = null;
// this.length--;
// return poped;
// } else {
// this.tail = null;
// this.head = null;
// this.length = 0;
// return undefined;
// }
// }
// // Author's push function implementation.
// push(val) {
// var newNode = new Node(val);
// if (!this.head) {
// this.head = newNode;
// this.tail = this.head;
// } else {
// this.tail.next = newNode;
// this.tail = newNode;
// }
// this.length++;
// return this;
// }
// }
// var list = new SinglyLinkedList();
// list.push('HELLO');
// list.push('HI');
// list.push('GOODBYE');
// console.log(list);
// console.log(list.pop());
// console.log(list);
// console.log(list.pop());
// console.log(list);
// console.log(list.pop());
// console.log(list);
// console.log(list.pop());
// console.log(list);
// list.push("HI Y'All");
// console.log(list);
// // Output:
// // SinglyLinkedList {
// // head: Node { val: 'HELLO', next: Node { val: 'HI', next: [Node] } },
// // tail: Node { val: 'GOODBYE', next: null },
// // length: 3
// // }
// // Node { val: 'GOODBYE', next: null }
// // SinglyLinkedList {
// // head: Node { val: 'HELLO', next: Node { val: 'HI', next: null } },
// // tail: Node { val: 'HI', next: null },
// // length: 2
// // }
// // Node { val: 'HI', next: null }
// // SinglyLinkedList {
// // head: Node { val: 'HELLO', next: null },
// // tail: Node { val: 'HELLO', next: null },
// // length: 1
// // }
// // undefined
// // SinglyLinkedList { head: null, tail: null, length: 0 }
// // undefined
// // SinglyLinkedList { head: null, tail: null, length: 0 }
// // SinglyLinkedList {
// // head: Node { val: "HI Y'All", next: null },
// // tail: Node { val: "HI Y'All", next: null },
// // length: 1
// // }
})();
// Popping pseudocode
//
// * If there are no nodes in the list,
// return undefined
// * Loop through the list until you
// reach the tail
// * Set the next property of the 2nd
// to last node to be null
// * Set the tail to be the 2nd to last
// node
// * Decrement the length of the list by 1
// * Return the value of the node removed
/* Singly Linked List Pop Solution */
(() => {
// class Node {
// constructor(val) {
// this.val = val;
// this.next = null;
// }
// }
// class SinglyLinkedList {
// constructor() {
// this.head = null;
// this.tail = null;
// this.length = 0;
// }
// // // My push function implementation. Works perfectly
// // push(val) {
// // let node = new Node(val);
// // if (this.length === 0) {
// // this.head = node;
// // this.tail = node;
// // this.length++;
// // } else if (this.length >= 1) {
// // this.tail.next = node;
// // this.tail = node;
// // this.length++;
// // }
// // }
// // Author's push function implementation.
// push(val) {
// var newNode = new Node(val);
// if (!this.head) {
// this.head = newNode;
// this.tail = this.head;
// } else {
// this.tail.next = newNode;
// this.tail = newNode;
// }
// this.length++;
// return this;
// }
// // // My pop function implementation. Works perfectly
// // pop() {
// // if (this.length > 1) {
// // let node = this.head;
// // while (node.next != this.tail) {
// // node = node.next;
// // }
// // this.tail = node;
// // this.tail.next = null;
// // this.length--;
// // // return this;
// // } else {
// // this.tail = null;
// // this.head = null;
// // this.length = 0;
// // return this; // return undefined
// // }
// // }
// // Author's pop function implementation.
// pop() {
// if (!this.head) return undefined;
// var current = this.head;
// var newTail = current;
// while (current.next) {
// newTail = current;
// current = current.next;
// }
// this.tail = newTail;
// this.tail.next = null;
// this.length--;
// if (this.length === 0) {
// this.head = null;
// this.tail = null;
// }
// return current;
// }
// }
// var list = new SinglyLinkedList();
// list.push('HELLO');
// list.push('HI');
// list.push('GOODBYE');
// console.log(list);
// console.log(listlist.pop());
// console.log(list);
// console.log(listlist.pop());
// console.log(list);
// console.log(listlist.pop());
// console.log(list);
// console.log(listlist.pop());
// console.log(list);
// list.push("HI Y'All");
// console.log(list);
})();
/* Singly Linked List Shift Intro */
// Shifting
// Removing a new node from the beginning of
// the Linked List
/* Singly Linked List Shift Solution */
// Shifting Pseudocode
// * If there are no nodes, return undefined
// * Store the current head property in a variable
// * Set the head property to be the current head's
// next property
// * Decrement by length by 1
// * Return the value of the node removed
(() => {
// class Node {
// constructor(val) {
// this.val = val;
// this.next = null;
// }
// }
// class SinglyLinkedList {
// constructor() {
// this.head = null;
// this.tail = null;
// this.length = 0;
// }
// // // My push function implementation. Works perfectly
// // push(val) {
// // let node = new Node(val);
// // if (this.length === 0) {
// // this.head = node;
// // this.tail = node;
// // this.length++;
// // } else if (this.length >= 1) {
// // this.tail.next = node;
// // this.tail = node;
// // this.length++;
// // }
// // }
// // Author's push function implementation.
// push(val) {
// var newNode = new Node(val);
// if (!this.head) {
// this.head = newNode;
// this.tail = this.head;
// } else {
// this.tail.next = newNode;
// this.tail = newNode;
// }
// this.length++;
// return this;
// }
// // // My pop function implementation. Works perfectly
// // pop() {
// // if (this.length > 1) {
// // let node = this.head;
// // while (node.next != this.tail) {
// // node = node.next;
// // }
// // this.tail = node;
// // this.tail.next = null;
// // this.length--;
// // // return this;
// // } else {
// // this.tail = null;
// // this.head = null;
// // this.length = 0;
// // return this; // return undefined
// // }
// // }
// // Author's pop function implementation.
// pop() {
// if (!this.head) return undefined;
// var current = this.head;
// var newTail = current;
// while (current.next) {
// newTail = current;
// current = current.next;
// }
// this.tail = newTail;
// this.tail.next = null;
// this.length--;
// if (this.length === 0) {
// this.head = null;
// this.tail = null;
// }
// return current;
// }
// // * If there are no nodes, return undefined
// // * Store the current head property in a variable
// // * Set the head property to be the current head's
// // next property
// // * Decrement by length by 1
// // * Return the value of the node removed
// // // My shift function implementation. Works perfectly
// // shift() {
// // if (!this.head) return undefined;
// // let temp = this.head;
// // this.head = this.head.next;
// // this.length--;
// // return temp;
// // }
// // Author's shift function implementation.
// shift() {
// if (!this.head) return undefined;
// var currentHead = this.head;
// this.head = currentHead.next;
// this.length--;
// if (this.length === 0) {
// this.tail = null;
// }
// return currentHead;
// }
// }
// var list = new SinglyLinkedList();
// list.push('HELLO');
// list.push('HI');
// list.push('GOODBYE');
// list.pop();
// list.pop();
// list.pop();
// list.push('HELLO');
// list.push('HI');
// list.push('GOODBYE');
// console.log(list.shift());
// console.log(list.shift());
// console.log(list.shift());
// console.log(list.shift());
// // output:
// // Node {
// // val: 'HELLO',
// // next: Node { val: 'HI', next: Node { val: 'GOODBYE', next: null } }
// // }
// // Node { val: 'HI', next: Node { val: 'GOODBYE', next: null } }
// // Node { val: 'GOODBYE', next: null }
// // undefined
})();
/* Singly Linked List Unshift Intro */
// Unshifting:
// Adding a new node to the beginning
// of the Linked List!
// Unshifting Pseudocode:
//
// * This function should accept a value
// * Create a new node using the value passed
// to the function
// * If there is no head property on the list,
// set the head and tail to be the newly
// created node.
// * Otherwise set the newly created node's next
// property to be the current head
// * Set the head property on the list to be that
// newly created node
// * Increment the length of the list by 1
// * Return the linked list
(() => {
// function unshift(val) {
// var newNode = new Node(val);
// if (!head) {
// this.head = newNode;
// this.tail = this.head;
// }
// newNode.next = this.head;
// this.head = newNode;
// this.length++;
// return this;
// }
})();
/* Singly Linked List Get Intro */
// Get
//
// Retrieving a node by it's position in the Linked List
// Get pseudocode
//
// * This function should accept an index
// * If the index is less than zero or
// greater or equal to the length of
// the list, return null or undefined
// * Loop through the list until you reach
// the index and return the node at that
// specific index
/* Singly Linked List Get Solution */
(() => {
// function get(index) {
// if (index < 0 || index >= this.length) {
// return undefined;
// }
// let counter = 0;
// let current = this.head;
// while (counter !== index) {
// currentNode = currentNode.next;
// counter++;
// }
// return current;
// }
})();
/* Singly Linked List Set Intro */
// Set
//
// Changing the value of a node based on it's
// position in the Linked List
// Set pseudocode
//
// * This function should accept a value and an
// index
// * Use your get function to find the specific node
// * If the node is not found, return false
// * If the node is found, set the valu of that node
// to be the value passed to the function and
// return true
/* Singly Linked List Set Solution */
(() => {
// function set(index, value) {
// var foundNode = this.get(index);
// if(foundNode) {
// foundNode.val = val;
// return true;
// }
// return false;
// }
})();
/* Singly Linked List Insert Intro */
// Insert
//
// Adding a node to the Linked List at a specific
// position
// Insert pseudocode
//
// * If the index is less than zero or greater than
// * the length, return false
// * If the index is tha same as the length, push a
// new node to the end of the list
// * If the index is 0, unshift a new node to the
// start of the list
// * Otherwise, using the get method, access the node
// at the index
// * Set the next property on that node to be the new
// node
// * Set the next property on the new node to be the
// previous next
// * Increment the length
// * Return true
/* Singly Linked List Insert Solution */
(() => {
// function insert(index, val) {
// if (index < 0 || index > this.length) return false;
// if (index === this.length) return !!this.push(val);
// if (index === 0) return !!this.unshift(val);
// var newNode = new Node(val);
// var prev = this.get(index - 1);
// var temp = prev.next;
// prev.next = newNode;
// newNode.next = temp;
// this.length++;
// return true;
// }
})();
/* Singly Linked List Remove Intro */
// Remove
//
// Removing a node from the Linked List
// at a specific position
// Remove pseudocode
//
// * If the index is less than zero or greater
// than the length, return undefined
// * If the index is the same as the length-1, pop
// * If the index is 0, shift
// * Otherwise, using the get method, access the
// node at the index-1
// * Set the next property on that node to be the
// next of the next node
// * Decrement the length
// * Return the value of the node removed
/* Singly Linked List Remove Solution */
(() => {
// remove(index) {
// if(index < 0 || index >= this.length ) return undefined;
// if(index === 0) return this.shift();
// if(index === this.length-1) return this.pop();
// var previousNode = this.get(index-1)
// var removed = previousNode.next;
// previousNode.next = removed.next;
// this.length--;
// return removed;
// }
})();
/* Singly Linked List Reverse Intro */
// Reverse
// Reversing the Linked List in place!
// Reverse pseudocode
//
// * Swap the head and tail
// * Create a variable called next
// * Create a variable called prev
// * Create a variable called node and
// initialize it to the head property
// * Loop through the list
// * Set next to be the next property on
// whatever node is
// * Set the next property on the node to
// be the value of the node variable
// * Set the node variable to be the value
// of the next variable
/* Singly Linked List Reverse Solution */
// Helper function (print)
(() => {
// print() {
// var arr = [];
// var current = this.head;
// while (current) {
// arr.push(current.val);
// current = current.next;
// }
// console.log(arr);
// }
})();
(() => {
// reverse() {
// var node = this.head;
// this.head = this.tail;
// this.tail = node;
// var next = null;
// var prev = null;
// for(var i = 0; i<this.length; i++) {
// next = node.next;
// node.next = prev;
// prev = node;
// node = next;
// }
// return this;
// }
})();
/* Singly Linked List BIG O Complexity */
// Big O of Singly Linked Lists
//
// Insertion -> O(1)
// Removal -> O(1) or O(n)
// Searching -> O(N)
// Access -> O(N)
// Recap
//
// * Singly Linked Lists are an excellent
// alternative to arrays when insertion
// and deletion at the beginning are
// frequently required.
// * Arrays contain a built in index whereas
// Linked Lists do not.
// * The idea of a list data structure that
// consists of nodes is the foundation
// for other data structures like Stacks
// and Queues