-
Notifications
You must be signed in to change notification settings - Fork 0
/
linked-List.js
102 lines (91 loc) · 2.71 KB
/
linked-List.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
// const singlyLinkedList = {
// head: {
// value: 1,
// next: {
// value: 2,
// next: {
// value: 3,
// next: {
// value: 4,
// next: {
// value: 5,
// next: {
// value: 6,
// next: null,
// },
// },
// },
// },
// },
// },
// };
class Node {
// Lo que hacemos es generar la cabeza de la lista apenas instanciamos la clase
constructor(value) {
this.value = value;
this.next = null;
}
};
class SinglyLinkedList {
// Lo que hacemos es generar la cabeza de la lista apenas instanciamos la clase
constructor(value) {
this.head = new Node(value);
// Como sólo existe la cabeza, entonces sólo hay un valor, eso quiere decir que la cabeza es también la cola, ya que es el primero y último elemento al ser el único.
this.tail = this.head;
// Cómo sólo hay un elemento, entonces el largo de la lista es igual a 1
this.length = 1;
}
// Nos permite añadir un elemento al final de la lista para que pase a ocupar la cola
append(value) {
const newNode = new Node(value);
this.tail.next = newNode;
this.tail = newNode;
this.length += 1;
this;
}
// Nos permite añadir un elemento al principio de la lista para que pase a ocupar la cabeza
prepend(value) {
const newNode = new Node(value);
newNode.next = this.head;
this.head = newNode;
this.length += 1;
}
// Nos permite insertar un nodo en algún índice de la lista
insert(index, value) {
if (index >= this.length) {
this.append(value);
}
const newNode = new Node(value);
const firstPointer = this.getNodeByIndex(index - 1);
const holdingPointer = firstPointer.next;
firstPointer.next = newNode;
newNode.next = holdingPointer;
this.length += 1;
this;
}
// Nos permite obtener un nodo a partir de un index
getNodeByIndex(index) {
let counter = 0;
let currentNode = this.head;
while (counter !== index) {
currentNode = currentNode.next;
counter += 1;
}
currentNode;
}
// Nos permite eliminar un nodo de la lista
remove(index) {
const firstPointer = this.getNodeByIndex(index - 1);
const nextPointer = this.getNodeByIndex(index + 1);
firstPointer.next = nextPointer;
this.length -= 1;
this;
}
};
const linkedList = new SinglyLinkedList(1);
linkedList.append(2);
linkedList.append(4);
linkedList.prepend(0);
linkedList.insert(3, 3);
linkedList.remove(3);
console.log(linkedList);