-
Notifications
You must be signed in to change notification settings - Fork 7
/
707-Design-Linked-List.js
142 lines (115 loc) Β· 3.26 KB
/
707-Design-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
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
// eslint-disable-next-line no-redeclare
class Node {
constructor(val) {
this.val = val;
this.next = null;
}
}
class MyLinkedList {
constructor(head) {
this.head = head;
this.tail = null;
this.size = 0;
}
/**
* Get the value of the index-th node in the linked list. If the index is invalid, return -1.
* @param {number} index
* @return {number}
*/
get(index) {
if (index >= this.size || index < 0) return -1;
let idx = 0;
let current = this.head;
while (current) {
if (idx === index) return current.val;
current = current.next;
idx++;
}
}
/**
* Add a node of value val before the first element of the linked list. After the insertion, the new node will be the first node of the linked list.
* @param {number} val
* @return {void}
*/
addAtHead(val) {
const node = new Node(val);
if (this.head) {
node.next = this.head;
this.head = node;
} else {
this.head = node;
this.tail = this.head;
}
this.size++;
}
/**
* Append a node of value val to the last element of the linked list.
* @param {number} val
* @return {void}
*/
addAtTail(val) {
const node = new Node(val);
if (this.tail) this.tail.next = node;
else this.head = node;
this.tail = node;
this.size++;
}
/**
* Add a node of value val before the index-th node in the linked list. If index equals to the length of linked list, the node will be appended to the end of linked list. If index is greater than the length, the node will not be inserted.
* @param {number} index
* @param {number} val
* @return {void}
*/
addAtIndex(index, val) {
if (index > this.size) return;
if (index === this.size) {
this.addAtTail(val);
return;
}
if (index === 0) {
this.addAtHead(val);
return;
}
let idx = 0;
let current = this.head;
while (current) {
if (idx === index - 1) {
const node = new Node(val);
node.next = current.next;
current.next = node;
this.size++;
return;
}
current = current.next;
idx++;
}
}
/**
* Delete the index-th node in the linked list, if the index is valid.
* @param {number} index
* @return {void}
*/
deleteAtIndex(index) {
if (index >= this.size || index < 0) return;
if (index === 0) {
this.head = this.head.next;
this.size--;
if (this.size === 0) this.tail = null;
return;
}
let idx = 0;
let current = this.head;
while (current) {
if (idx === index - 1) {
current.next = current.next.next ? current.next.next : null;
if (!current.next) {
this.tail = current;
}
this.size--;
return;
}
current = current.next;
idx++;
}
}
}