-
Notifications
You must be signed in to change notification settings - Fork 464
/
Copy pathRedBlackTreeNoComments.res
643 lines (587 loc) · 16.1 KB
/
RedBlackTreeNoComments.res
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
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
type nodeColor =
| Red
| Black
type rec node<'value> = {
mutable left: option<node<'value>>,
mutable right: option<node<'value>>,
mutable parent: option<node<'value>>,
mutable sum: float,
mutable color: nodeColor,
mutable height: float,
mutable value: 'value,
}
type t<'value> = {
mutable size: int,
mutable root: option<node<'value>>,
compare: (. 'value, 'value) => int,
}
let createNode = (~color, ~value, ~height) => {
left: None,
right: None,
parent: None,
sum: 0.,
height: height,
value: value,
color: color,
}
external castNotOption: option<'a> => 'a = "%identity"
let updateSum = node => {
let leftSum = switch node.left {
| None => 0.
| Some(left) => left.sum
}
let rightSum = switch node.right {
| None => 0.
| Some(right) => right.sum
}
node.sum = leftSum +. rightSum +. node.height
}
let rec updateSumRecursive = (rbt, node) => {
updateSum(node)
switch node.parent {
| None => ()
| Some(parent) => rbt->updateSumRecursive(parent)
}
}
let grandParentOf = node =>
switch node.parent {
| None => None
| Some(ref_) => ref_.parent
}
let isLeft = node =>
switch node.parent {
| None => false
| Some(parent) => Some(node) === parent.left
}
let leftOrRightSet = (~node, x, value) =>
isLeft(node)
? x.left = value
: x.right = value
let siblingOf = node =>
if isLeft(node) {
castNotOption(node.parent).right
} else {
castNotOption(node.parent).left
}
let uncleOf = node =>
switch grandParentOf(node) {
| None => None
| Some(grandParentOfNode) =>
if isLeft(castNotOption(node.parent)) {
grandParentOfNode.right
} else {
grandParentOfNode.left
}
}
let rec findNode = (rbt, node, value) =>
switch node {
| None => None
| Some(node) =>
let cmp = rbt.compare(. value, node.value)
if cmp === 0 {
Some(node)
} else if cmp < 0 {
findNode(rbt, node.left, value)
} else {
findNode(rbt, node.right, value)
}
}
let has = (rbt, value) => findNode(rbt, rbt.root, value) !== None
let rec peekMinNode = node =>
switch node {
| None => None
| Some(node) => node.left === None ? Some(node) : node.left->peekMinNode
}
let rec peekMaxNode = node =>
switch node {
| None => None
| Some(node) => node.right === None ? Some(node) : node.right->peekMaxNode
}
let rotateLeft = (rbt, node) => {
let parent = node.parent
let right = node.right
switch parent {
| Some(parent) => parent->leftOrRightSet(~node, right)
| None => rbt.root = right
}
node.parent = right
let right = right->castNotOption
let rightLeft = right.left
node.right = rightLeft
switch rightLeft {
| Some(rightLeft) => rightLeft.parent = Some(node)
| None => ()
}
right.parent = parent
right.left = Some(node)
updateSum(node)
updateSum(right)
}
let rotateRight = (rbt, node) => {
let parent = node.parent
let left = node.left
switch parent {
| Some(parent) => parent->leftOrRightSet(~node, left)
| None => rbt.root = left
}
node.parent = left
let left = left->castNotOption
let leftRight = left.right
node.left = leftRight
switch leftRight {
| Some(leftRight) => leftRight.parent = Some(node)
| None => ()
}
left.parent = parent
left.right = Some(node)
updateSum(node)
updateSum(left)
}
let rec findInsert = (rbt, node, nodeToInsert, value) =>
switch node {
| None => None
| Some(node) =>
let cmp = rbt.compare(. value, node.value)
if cmp === 0 {
Some(node)
} else if cmp < 0 {
if node.left !== None {
rbt->findInsert(node.left, nodeToInsert, value)
} else {
nodeToInsert.parent = Some(node)
node.left = Some(nodeToInsert)
None
}
} else if node.right !== None {
rbt->findInsert(node.right, nodeToInsert, value)
} else {
nodeToInsert.parent = Some(node)
node.right = Some(nodeToInsert)
None
}
}
let rec _addLoop = (rbt, currentNode) =>
if Some(currentNode) === rbt.root {
currentNode.color = Black
} else if (currentNode.parent->castNotOption).color === Black {
()
} else if {
let uncle = uncleOf(currentNode)
uncle !== None && (uncle->castNotOption).color === Red
} {
(currentNode.parent->castNotOption).color = Black
(uncleOf(currentNode)->castNotOption).color = Black
(grandParentOf(currentNode)->castNotOption).color = Red
_addLoop(rbt, grandParentOf(currentNode)->castNotOption)
} else {
let currentNode = if (
!isLeft(currentNode) && isLeft(currentNode.parent->castNotOption)
) {
rotateLeft(rbt, currentNode.parent->castNotOption)
currentNode.left->castNotOption
} else if (
isLeft(currentNode) && !isLeft(currentNode.parent->castNotOption)
) {
rotateRight(rbt, currentNode.parent->castNotOption)
currentNode.right->castNotOption
} else {
currentNode
}
(currentNode.parent->castNotOption).color = Black
(grandParentOf(currentNode)->castNotOption).color = Red
if isLeft(currentNode) {
rotateRight(rbt, grandParentOf(currentNode)->castNotOption)
} else {
rotateLeft(rbt, grandParentOf(currentNode)->castNotOption)
}
}
let add = (rbt, value, ~height) => {
rbt.size = rbt.size + 1
let nodeToInsert = createNode(~value, ~color=Red, ~height)
let inserted = if rbt.root === None {
rbt.root = Some(nodeToInsert)
true
} else {
let foundNode = findInsert(rbt, rbt.root, nodeToInsert, value)
foundNode === None
}
if inserted {
rbt->updateSumRecursive(nodeToInsert)
_addLoop(rbt, nodeToInsert)
Some(nodeToInsert)
} else {
None
}
}
let removeNode = (rbt, node) => {
let nodeToRemove = switch (node.left, node.right) {
| (Some(_), Some(_)) =>
let successor = peekMinNode(node.right)->castNotOption
node.value = successor.value
node.height = successor.height
successor
| _ => node
}
let successor = switch nodeToRemove.left {
| None => nodeToRemove.right
| left => left
}
let (successor, isLeaf) = switch successor {
| None =>
let leaf = createNode(~value=%raw("0"), ~color=Black, ~height=0.)
let isLeaf = (. x) => x === leaf
(leaf, isLeaf)
| Some(successor) => (successor, (. _) => false)
}
let nodeParent = nodeToRemove.parent
successor.parent = nodeParent
switch nodeParent {
| None => ()
| Some(parent) => parent->leftOrRightSet(~node=nodeToRemove, Some(successor))
}
rbt->updateSumRecursive(successor)
if nodeToRemove.color === Black {
if successor.color === Red {
successor.color = Black
if successor.parent === None {
rbt.root = Some(successor)
}
} else {
let break = ref(false)
let successorRef = ref(successor)
while !break.contents {
let successor = successorRef.contents
switch successor.parent {
| None =>
rbt.root = Some(successor)
break.contents = true
| Some(successorParent) =>
let sibling = siblingOf(successor)
if sibling !== None && (sibling->castNotOption).color === Red {
successorParent.color = Red
(sibling->castNotOption).color = Black
if isLeft(successor) {
rotateLeft(rbt, successorParent)
} else {
rotateRight(rbt, successorParent)
}
}
let sibling = siblingOf(successor)
let siblingNN = sibling->castNotOption
if (
successorParent.color === Black &&
(sibling === None ||
(siblingNN.color === Black &&
(siblingNN.left === None ||
(siblingNN.left->castNotOption).color === Black) &&
(siblingNN.right === None ||
(siblingNN.right->castNotOption).color === Black)))
) {
if sibling !== None {
siblingNN.color = Red
}
successorRef.contents = successorParent
} else if (
successorParent.color === Red &&
(sibling === None ||
(siblingNN.color === Black &&
(siblingNN.left === None ||
(siblingNN.left->castNotOption).color === Black) &&
(siblingNN.right === None ||
(siblingNN.right->castNotOption).color === Black)))
) {
if sibling !== None {
siblingNN.color = Red
}
successorParent.color = Black
break.contents = true
} else if (
sibling !== None && (sibling->castNotOption).color === Black
) {
let sibling = sibling->castNotOption
if (
isLeft(successor) &&
(sibling.right === None ||
(sibling.right->castNotOption).color === Black) &&
sibling.left !== None &&
(sibling.left->castNotOption).color === Red
) {
sibling.color = Red
(sibling.left->castNotOption).color = Black
rotateRight(rbt, sibling)
} else if (
!isLeft(successor) &&
(sibling.left === None ||
(sibling.left->castNotOption).color === Black) &&
sibling.right !== None &&
(sibling.right->castNotOption).color === Red
) {
sibling.color = Red
(sibling.right->castNotOption).color = Black
rotateLeft(rbt, sibling)
}
break.contents = true
} else {
let sibling = siblingOf(successor)
let sibling = sibling->castNotOption
sibling.color = successorParent.color
if isLeft(successor) {
(sibling.right->castNotOption).color = Black
rotateRight(rbt, successorParent)
} else {
(sibling.left->castNotOption).color = Black
rotateLeft(rbt, successorParent)
}
}
}
}
}
}
if isLeaf(. successor) {
if rbt.root === Some(successor) {
rbt.root = None
}
switch successor.parent {
| None => ()
| Some(parent) => parent->leftOrRightSet(~node=successor, None)
}
}
}
let remove = (rbt, value) =>
switch findNode(rbt, rbt.root, value) {
| Some(node) =>
rbt->removeNode(node)
rbt.size = rbt.size - 1
true
| None => false
}
let rec findNodeThroughCallback = (rbt, node, cb) =>
switch node {
| None => None
| Some(node) =>
let cmp = cb(. node)
if cmp === 0 {
Some(node)
} else if cmp < 0 {
findNodeThroughCallback(rbt, node.left, cb)
} else {
findNodeThroughCallback(rbt, node.right, cb)
}
}
let removeThroughCallback = (rbt, cb) =>
switch findNodeThroughCallback(rbt, rbt.root, cb) {
| Some(node) =>
rbt->removeNode(node)
rbt.size = rbt.size - 1
true
| None => false
}
let make = (~compare) => {size: 0, root: None, compare: compare}
let makeWith = (array, ~compare) => {
let rbt = make(~compare)
array->Js.Array2.forEach(((value, height)) =>
add(rbt, value, ~height)->ignore
)
rbt
}
let rec heightOfInterval = (rbt, node, lhs, rhs) =>
switch node {
| None => 0.
| Some(n) =>
if lhs === None && rhs === None {
n.sum
} else if lhs !== None && rbt.compare(. n.value, lhs->castNotOption) < 0 {
rbt->heightOfInterval(n.right, lhs, rhs)
} else if rhs !== None && rbt.compare(. n.value, rhs->castNotOption) > 0 {
rbt->heightOfInterval(n.left, lhs, rhs)
} else {
n.height +.
rbt->heightOfInterval(n.left, lhs, None) +.
rbt->heightOfInterval(n.right, None, rhs)
}
}
let heightOfInterval = (rbt, lhs, rhs) =>
heightOfInterval(rbt, rbt.root, lhs, rhs)
let rec firstVisibleNode = (node, top) =>
switch node {
| None => None
| Some(node) =>
if node.sum <= top {
None
} else {
let nodeHeight = node.height
let sumLeft = switch node.left {
| None => 0.0
| Some(left) => left.sum
}
if sumLeft > top {
firstVisibleNode(node.left, top)
} else if sumLeft +. nodeHeight > top {
Some(node)
} else {
let offset = sumLeft +. nodeHeight
firstVisibleNode(node.right, top -. offset)
}
}
}
let lastVisibleNode = (node, top) =>
switch firstVisibleNode(node, top) {
| None => node->peekMaxNode
| first => first
}
let firstVisibleValue = (rbt, ~top) =>
switch firstVisibleNode(rbt.root, top) {
| None => None
| Some(node) => Some(node.value)
}
let rec leftmost = node =>
switch node.left {
| None => node
| Some(node) => node->leftmost
}
let rec firstRightParent = node =>
switch node.parent {
| None => None
| Some(parent) => isLeft(node) ? Some(parent) : parent->firstRightParent
}
let nextNode = node =>
switch node.right {
| None => node->firstRightParent
| Some(right) => Some(right->leftmost)
}
let rec sumLeftSpine = (node, ~fromRightChild) => {
let leftSpine = switch node.left {
| None => node.height
| Some(left) => fromRightChild ? node.height +. left.sum : 0.0
}
switch node.parent {
| None => leftSpine
| Some(parent) =>
leftSpine +.
parent->sumLeftSpine(~fromRightChild=parent.right === Some(node))
}
}
let getY = node => node->sumLeftSpine(~fromRightChild=true) -. node.height
let rec iterate = (~inclusive, firstNode, lastNode, ~callback) =>
switch firstNode {
| None => ()
| Some(node) =>
if inclusive {
callback(. node)
}
if firstNode !== lastNode {
if !inclusive {
callback(. node)
}
iterate(~inclusive, node->nextNode, lastNode, ~callback)
}
}
let rec iterateWithY = (~y=?, ~inclusive, firstNode, lastNode, ~callback) =>
switch firstNode {
| None => ()
| Some(node) =>
let y = switch y {
| None => node->getY
| Some(y) => y
}
if inclusive {
callback(. node, y)
}
if firstNode !== lastNode {
if !inclusive {
callback(. node, y)
}
iterateWithY(
~y=y +. node.height,
~inclusive,
node->nextNode,
lastNode,
~callback,
)
}
}
let rec updateSum = (node, ~delta) =>
switch node {
| None => ()
| Some(node) =>
node.sum = node.sum +. delta
node.parent->updateSum(~delta)
}
let updateHeight = (node, ~height) => {
let delta = height -. node.height
node.height = height
Some(node)->updateSum(~delta)
}
type oldNewVisible<'value> = {
mutable old: array<'value>,
mutable new: array<'value>,
}
let getAnchorDelta = (rbt, ~anchor) =>
switch anchor {
| None => 0.0
| Some(value, y) =>
switch rbt->findNode(rbt.root, value) {
| Some(node) => y -. node->getY
| None => 0.0
}
}
let onChangedVisible = (
~anchor=None,
rbt,
~oldNewVisible,
~top as top_,
~bottom as bottom_,
~appear,
~remained,
~disappear,
) => {
let old = oldNewVisible.new
let new = oldNewVisible.old
new
->Js.Array2.removeCountInPlace(~pos=0, ~count=new->Js.Array2.length)
->ignore
oldNewVisible.old = old
oldNewVisible.new = new
let anchorDelta = rbt->getAnchorDelta(~anchor)
let top = top_ -. anchorDelta
let top = top < 0.0 ? 0.0 : top
let bottom = bottom_ -. anchorDelta
let first = firstVisibleNode(rbt.root, top)
let last = lastVisibleNode(rbt.root, bottom)
let oldLen = old->Js.Array2.length
let oldIter = ref(0)
iterateWithY(~inclusive=true, first, last, (. node, y_) => {
let y = y_ +. anchorDelta
if y >= 0.0 {
while (
oldIter.contents < oldLen &&
rbt.compare(.
Js.Array2.unsafe_get(old, oldIter.contents),
node.value,
) < 0
) {
disappear(. Js.Array2.unsafe_get(old, oldIter.contents))
oldIter.contents = oldIter.contents + 1
}
new->Js.Array2.push(node.value)->ignore
if oldIter.contents < oldLen {
let cmp = rbt.compare(.
Js.Array2.unsafe_get(old, oldIter.contents),
node.value,
)
if cmp == 0 {
remained(. node, y)
oldIter.contents = oldIter.contents + 1
} else {
appear(. node, y)
}
} else {
appear(. node, y)
}
}
})
while oldIter.contents < oldLen {
disappear(. Js.Array2.unsafe_get(old, oldIter.contents))
oldIter.contents = oldIter.contents + 1
}
}