-
Notifications
You must be signed in to change notification settings - Fork 2.4k
/
Copy path0707-design-linked-list.js
89 lines (83 loc) · 2.22 KB
/
0707-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
class Node {
constructor(val) {
this.val = val;
this.prev = null;
this.next = null;
}
}
class MyLinkedList {
constructor() {
this.head = null;
this.tail = null;
}
get(index) {
let curr = this.head;
while (curr && index > 0) {
curr = curr.next;
index--;
}
return curr ? curr.val : -1;
}
addAtHead(val) {
if (this.head === null) {
this.head = new Node(val);
this.tail = this.head;
} else {
this.head.prev = new Node(val);
this.head.prev.next = this.head;
this.head = this.head.prev;
}
}
addAtTail(val) {
if (this.head === null) {
this.head = new Node(val);
this.tail = this.head;
} else {
this.tail.next = new Node(val);
this.tail.next.prev = this.tail;
this.tail = this.tail.next;
}
}
addAtIndex(index, val) {
if (index === 0) this.addAtHead(val);
else {
let curr = this.head;
while (curr && index > 0) {
curr = curr.next;
index--;
}
if (index === 0) {
if (!curr) this.addAtTail(val);
else {
const prev = curr.prev;
prev.next = new Node(val);
prev.next.prev = prev;
prev.next.next = curr;
curr.prev = prev.next;
}
}
}
}
deleteAtIndex(index) {
if (!this.head) return;
if (index === 0) {
this.head = this.head.next;
if (this.head) this.head.prev = null;
} else {
let curr = this.head;
while (curr && index > 0) {
curr = curr.next;
index--;
}
if (curr && index === 0) {
if (!curr.next) {
curr.prev.next = null;
this.tail = curr.prev;
} else {
curr.prev.next = curr.next;
curr.next.prev = curr.prev;
}
}
}
}
}