-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdll.js
292 lines (230 loc) · 5.01 KB
/
dll.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
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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
DLLNode = class DLLNode {
constructor(val, prev = this, next = this) {
this.val = val
this.prev = prev
this.next = next
}
adv(n = 1) {
let node = this
if (n < 0) {
while (n++) {
node = node.prev
}
} else {
while (n--) {
node = node.next
}
}
return node
}
}
DLL = class DLL {
constructor(...a) {
this.h = undefined
this.length = 0
for (let el of a) {
this.insValEnd(el)
}
}
static from(a) {
let dll = new DLL()
for (let el of a) {
dll.insValEnd(el)
}
return dll
}
insNodeAheadNode(old, node) {
node.next = old.next
old.next.prev = node
old.next = node
node.prev = old
return ++this.length
}
insDLLAheadNode(old, dll) {
let start = dll.getNode(0)
let end = dll.getNode(-1)
end.next = old.next
old.next.prev = end
old.next = start
start.prev = old
return this.length += dll.length
}
insValAheadNode(old, val) { return this.insNodeAheadNode(old, new DLLNode(val)) }
insNodeStart(node) {
if (this.h) {
return this.insNodeBehindNode(this.h, node)
} else {
this.h = node
return ++this.length
}
}
insDLLStart(dll) {
if (this.h) {
return this.insDLLBehindNode(this.h, dll)
} else {
this.h = dll.h
return this.length = dll.length
}
}
insValStart(val) { return this.insNodeStart(new DLLNode(val)) }
unshift(...vals) {
let ret
vals.reverse().forEach((val) => ret = this.insValStart(val))
return ret
}
insNodeBehindNode(old, node) {
node.prev = old.prev
old.prev.next = node
old.prev = node
node.next = old
if (this.h == old) {
this.h = node
}
return ++this.length
}
insDLLBehindNode(old, dll) {
let start = dll.getNode(0)
let end = dll.getNode(-1)
start.prev = old.prev
old.prev.next = start
old.prev = end
end.next = old
if (this.h == old) {
this.h = dll.h
}
return this.length += dll.length
}
insValBehindNode(old, val) {
let node = new DLLNode(val, old.prev, old)
old.prev = node
old.prev.prev.next = node
if (this.h == old) {
this.h = node
}
return ++this.length
}
insNodeEnd(node) {
if (this.h) {
return this.insNodeAheadNode(this.h.prev, node)
} else {
this.h = node
return ++this.length
}
}
insDLLEnd(dll) {
if (this.h) {
return this.insDLLAheadNode(this.h.prev, dll)
} else {
this.h = dll.h
return this.length = dll.length
}
}
insValEnd(val) { return this.insNodeEnd(new DLLNode(val)) }
push(...vals) {
let ret
vals.forEach((val) => ret = this.insValEnd(val))
return ret
}
insNodeBehindIdx(idx, node) { return this.insNodeBehindNode(this.getNode(idx), node) }
insDLLBehindIdx(idx, dll) { return this.insDLLBehindNode(this.getNode(idx), dll) }
insValBehindIdx(idx, val) { return this.insValBehindNode(this.getNode(idx), val) }
insNodeAheadIdx(idx, node) { return this.insNodeAheadNode(this.getNode(idx), node) }
insDLLAheadIdx(idx, dll) { return this.insDLLAheadNode(this.getNode(idx), dll) }
insValAheadIdx(idx, val) { return this.insValAheadNode(this.getNode(idx), val) }
removeNode(node) {
let tmp = node.next
node.prev.next = node.next
tmp.prev = node.prev
this.length--
if (node == this.h) {
this.h = this.h.next
}
if (this.length == 0) {
this.h = undefined
}
return node
}
removeIdx(idx) { return this.removeNode(this.getNode(idx)).val }
shift() { return this.removeIdx(0) }
pop() { return this.removeIdx(-1) }
removeNodeRange(start, end) {
let result = new DLL()
while (start != end) {
let next = start.next
result.insNodeEnd(this.removeNode(start))
start = next
}
return result
}
removeIdxRange(startIdx, endIdx) { return this.removeNodeRange(this.getNode(startIdx), this.getNode(endIdx)) }
getNode(idx) { return this.h.adv(idx) }
get(idx) { return this.getNode(idx).val }
reverse() {
if (!this.h) {
return this
}
let node = this.h
do {
let next = node.next
let tmp = node.prev
node.prev = node.next
node.next = tmp
node = next
} while (node != this.h)
return this
}
rotateForward(rot) {
this.h = this.h.adv(rot)
return this
}
rotateBackward(rot) {
this.h = this.h.adv(-rot)
return this
}
forEach(f) {
let i = 0
for (let node of this.nodes()) {
f(node.val, node, i++, this)
}
return this
}
mapMut(f) { return this.forEach((val, node, idx, dll) => node.val = f(val, node, idx, dll)) }
map(f) { return this.copy().mapMut(f) }
includes(val) {
let res = false
this.forEach((e) => res ||= e == val)
return res
}
toArray() {
let arr = new Array(this.length)
this.forEach((el, _, idx) => arr[idx] = el)
return arr
}
toJSON() { return this.toArray() }
toString() { return this.toArray().toString() }
copy() {
let that = new DLL()
this.forEach((e) => that.push(e))
return that
}
*[Symbol.iterator]() {
if (!this.h) {
return
}
let node = this.h
do {
yield node.val
node = node.next
} while (node != this.h)
}
*nodes() {
if (!this.h) {
return
}
let node = this.h
do {
yield node
node = node.next
} while (node != this.h)
}
}