-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdoubly_linked.js
48 lines (43 loc) · 996 Bytes
/
doubly_linked.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
class Node {
constructor(data) {
this.data = data;
this.next = null;
this.prev = null;
}
}
class DoublyLinkedList {
constructor() {
this.head = null;
}
append(data) {
const newNode = new Node(data);
if (this.head === null) {
this.head = newNode;
return;
}
let last = this.head;
while (last.next !== null) {
last = last.next;
}
last.next = newNode;
newNode.prev = last;
}
printList() {
let current = this.head;
let result = '';
while (current !== null) {
result += current.data + ' <-> ';
current = current.next;
}
console.log(result + 'NULL');
}
}
const list = new DoublyLinkedList();
list.append(1);
list.append(2);
list.append(3);
list.printList(); // 输出:1 <-> 2 <-> 3 <-> NULL
/*
jarry@MacBook-Pro linked % node doubly_linked.js
1 <-> 2 <-> 3 <-> NULL
*/