-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLinkedList.js
167 lines (131 loc) · 2.92 KB
/
LinkedList.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
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
/* eslint-disable no-plusplus */
import Node from './Node';
class LinkedList {
constructor(value = null) {
if (value) this.#addFirst(value);
else {
this.head = undefined;
this.tail = this.head;
this.size = 0;
}
}
#addFirst(value) {
const node = new Node(value);
this.head = node;
this.tail = this.head;
this.size = 1;
return node;
}
append(value) {
if (!value) return undefined;
this.size++;
if (this.size === 1) {
return this.#addFirst(value);
}
const node = new Node(value);
this.tail.next = node;
node.prev = this.tail;
this.tail = node;
return node;
}
prepend(value) {
if (!value) return undefined;
this.size++;
if (this.size === 1) {
return this.#addFirst(value);
}
const node = new Node(value);
node.next = this.head;
this.head.prev = node;
this.head = node;
return node;
}
#nodeAt(index) {
if (index >= this.size) return undefined;
let curr = this.head;
for (let i = 0; i < index; ++i) {
curr = curr.next;
}
return curr;
}
at(index) {
return this.#nodeAt(index)?.value;
}
pop() {
if (!this.size) return undefined;
const { tail } = this;
this.size--;
if (this.size) {
this.tail = tail.prev;
this.tail.next = null;
}
return tail.value;
}
contains(value) {
if (!this.size) return undefined;
let curr = this.head;
for (let i = 0; i < this.size; ++i) {
if (curr.value === value) return true;
curr = curr.next;
}
return false;
}
find(value) {
if (!this.size) return undefined;
let curr = this.head;
for (let i = 0; i < this.size; ++i) {
if (curr.value === value) return i;
curr = curr.next;
}
return null;
}
toString() {
if (!this.size) return undefined;
let str = '';
let curr = this.head;
for (let i = 0; i < this.size; ++i) {
str += `( ${curr.value} ) -> `;
curr = curr.next;
}
return `${str}null`;
}
insertAt(value, index) {
if (this.size === index) {
return this.append(value);
}
if (index === 0) {
return this.prepend(value);
}
if (this.size < index || index < 0) {
return undefined;
}
this.size++;
const node = new Node(value);
const prev = this.#nodeAt(index - 1);
node.prev = prev;
node.next = prev.next;
prev.next.prev = node;
prev.next = node;
return node;
}
removeAt(index) {
if (this.size - 1 === index) {
return this.pop();
}
if (this.size <= index || index < 0) {
return undefined;
}
this.size--;
if (index === 0) {
const { head } = this;
this.head = head.next;
this.head.prev = null;
return head.value;
}
const prev = this.#nodeAt(index - 1);
const node = prev.next;
prev.next = node.next;
prev.next.prev = prev;
return node.value;
}
}