-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsnake.js
57 lines (50 loc) · 1013 Bytes
/
snake.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
class Node {
constructor(val) {
this.val = val;
this.next = null;
this.prev = null;
}
}
class DoublyLinkedList {
constructor() {
this.head = null;
this.tail = null;
}
addToTail(val) {
let newNode = new Node(val);
if (this.tail) {
this.tail.next = newNode;
newNode.prev = this.tail;
} else {
this.head = newNode;
}
this.tail = newNode;
}
addToHead(val) {
let newNode = new Node(val);
if (this.head) {
this.head.prev = newNode;
newNode.next = this.head;
} else {
this.tail = newNode;
}
this.head = newNode;
}
removeTail() {
if (!this.tail) {
return;
}
if (this.head === this.tail) {
this.head = null;
this.tail = null;
return;
}
this.tail = this.tail.prev;
this.tail.next = null;
}
}
const ll = new DoublyLinkedList();
ll.addToTail(2);
ll.addToHead(3);
ll.addToHead(4);
console.log(ll);