链表

每个节点由数据和到序列中下一个节点的引用组成。这种结构允许在迭代期间有效地从序列中的任何位置插入或删除元素。链表的一个缺点是访问时间是线性的(而且难以管道化)。更快的访问,如随机访问,是不可行的。

复杂度

时间复杂度

AccessSearchInsertionDeletion
O(n)O(n)O(1)O(1)

空间复杂度

O(n)

1
2
3
4
5
6
7
8
9
10
class LinkedListNode {
constructor(value, next = null) {
this.value = value;
this.next = next;
}

toString(callback) {
return callback ? callback(this.value) : `${this.value}`;
}
}
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
class LinkedList {
/**
* @param {Function} [comparatorFunction]
*/
constructor(comparatorFunction) {
/** @var LinkedListNode */
this.head = null;

/** @var LinkedListNode */
this.tail = null;

this.compare = new Comparator(comparatorFunction);
}

/**
* @param {*} value
* @return {LinkedList}
*/
prepend(value) {
// Make new node to be a head.
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;
}

/**
* @param {*} value
* @return {LinkedList}
*/
append(value) {
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.
this.tail.next = newNode;
this.tail = newNode;

return this;
}

/**
* @param {*} value
* @return {LinkedListNode}
*/
delete(value) {
if (!this.head) {
return null;
}

let deletedNode = null;

// If the head must be deleted then make next node that is differ
// from the head to be a new head.
while (this.head && this.compare.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.compare.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.compare.equal(this.tail.value, value)) {
this.tail = currentNode;
}

return deletedNode;
}

/**
* @param {Object} findParams
* @param {*} findParams.value
* @param {function} [findParams.callback]
* @return {LinkedListNode}
*/
find({ value = undefined, callback = undefined }) {
if (!this.head) {
return null;
}

let currentNode = 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.compare.equal(currentNode.value, value)) {
return currentNode;
}

currentNode = currentNode.next;
}

return null;
}

/**
* @return {LinkedListNode}
*/
deleteTail() {
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...

// Rewind to the last node and delete "next" link for the node before the last one.
let currentNode = this.head;
while (currentNode.next) {
if (!currentNode.next.next) {
currentNode.next = null;
} else {
currentNode = currentNode.next;
}
}

this.tail = currentNode;

return deletedTail;
}

/**
* @return {LinkedListNode}
*/
deleteHead() {
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;
}

/**
* @param {*[]} values - Array of values that need to be converted to linked list.
* @return {LinkedList}
*/
fromArray(values) {
values.forEach(value => this.append(value));

return this;
}

/**
* @return {LinkedListNode[]}
*/
toArray() {
const nodes = [];

let currentNode = this.head;
while (currentNode) {
nodes.push(currentNode);
currentNode = currentNode.next;
}

return nodes;
}

/**
* @param {function} [callback]
* @return {string}
*/
toString(callback) {
return this.toArray().map(node => node.toString(callback)).toString();
}

/**
* Reverse a linked list.
* @returns {LinkedList}
*/
reverse() {
let currNode = this.head;
let prevNode = null;
let nextNode = null;

while (currNode) {
// Store next node.
nextNode = currNode.next;

// Change next node of the current node so it would link to previous node.
currNode.next = prevNode;

// Move prevNode and currNode nodes one step forward.
prevNode = currNode;
currNode = nextNode;
}

// Reset head and tail.
this.tail = this.head;
this.head = prevNode;

return this;
}
}
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
class Comparator {

constructor(compareFunction) {
this.compare = compareFunction || Comparator.defaultCompareFunction;
}

static defaultCompareFunction(a, b) {
if (a === b) {
return 0;
}

return a < b ? -1 : 1;
}

equal(a, b) {
return this.compare(a, b) === 0;
}

lessThan(a, b) {
return this.compare(a, b) < 0;
}

greaterThan(a, b) {
return this.compare(a, b) > 0;
}

lessThanOrEqual(a, b) {
return this.lessThan(a, b) || this.equal(a, b);
}

greaterThanOrEqual(a, b) {
return this.greaterThan(a, b) || this.equal(a, b);
}

reverse() {
const compareOriginal = this.compare;
this.compare = (a, b) => compareOriginal(b, a);
}
}