-
Notifications
You must be signed in to change notification settings - Fork 465
/
Copy pathbelt_internalAVLset.ml
666 lines (567 loc) · 18 KB
/
belt_internalAVLset.ml
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
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
(* Copyright (C) 2017 Authors of BuckleScript
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* In addition to the permissions granted to you by the LGPL, you may combine
* or link a "work that uses the Library" with a publicly distributed version
* of this file to produce a combined library or application, then distribute
* that combined work under the terms of your choosing, with no requirement
* to comply with the obligations normally placed on you by section 4 of the
* LGPL version 3 (or the corresponding section of a later version of the LGPL
* should you choose to use a later version).
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *)
type 'value node = {
mutable value : 'value;
mutable height : int;
mutable left : 'value t;
mutable right : 'value t;
}
and 'value t = 'value node Js.null
[@@bs.deriving abstract]
module A = Belt_Array
module S = Belt_SortArray
external toOpt : 'a Js.null -> 'a option = "#null_to_opt"
external return : 'a -> 'a Js.null = "%identity"
external empty : 'a Js.null = "#null"
external unsafeCoerce : 'a Js.null -> 'a = "%identity"
type ('a, 'b) cmp = ('a, 'b) Belt_Id.cmp
(* Sets are represented by balanced binary trees (the heights of the
children differ by at most 2 *)
let treeHeight (n : _ t) =
match toOpt n with
| None -> 0
| Some n -> height n
let rec copy n =
match toOpt n with
| None -> n
| Some n ->
let l,r = n |. (left , right) in
return @@ node
~left:(copy l) ~right:(copy r)
~value:(value n) ~height:(height n)
(* Creates a new node with left son l, value v and right son r.
We must have all elements of l < v < all elements of r.
l and r must be balanced and | treeHeight l - treeHeight r | <= 2.
Inline expansion of treeHeight for better speed. *)
let create (l : _ t) v (r : _ t) =
let hl = match toOpt l with None -> 0 | Some n -> height n in
let hr = match toOpt r with None -> 0 | Some n -> height n in
return @@ node ~left:l ~value:v ~right:r ~height:(if hl >= hr then hl + 1 else hr + 1)
let singleton x = return @@ node ~left:empty ~value:x ~right:empty ~height:1
let heightGe l r =
match toOpt l, toOpt r with
| _ , None -> true
| Some hl, Some hr -> height hl >= height hr
| None, Some _ -> false
(* Same as create, but performs one step of rebalancing if necessary.
Assumes l and r balanced and | treeHeight l - treeHeight r | <= 3.
Inline expansion of create for better speed in the most frequent case
where no rebalancing is required. *)
(* TODO: inline all [create] operation, save duplicated [height] calcuation *)
let bal l v r =
let hl = match toOpt l with None -> 0 | Some n -> height n in
let hr = match toOpt r with None -> 0 | Some n -> height n in
if hl > hr + 2 then begin
(* [l] could not be empty *)
let ll,lv,lr = l |. unsafeCoerce |. (left , value , right) in
if heightGe ll lr then
create ll lv (create lr v r)
else begin
(* [lr] could not be empty*)
let lrl, lrv, lrr = lr |. unsafeCoerce |. (left , value , right) in
create (create ll lv lrl) lrv (create lrr v r)
end
end else if hr > hl + 2 then begin
(* [r] could not be empty *)
let rl,rv,rr = r |. unsafeCoerce |. (left , value , right) in
if heightGe rr rl then
create (create l v rl) rv rr
else begin
(* [rl] could not be empty *)
let rll, rlv, rlr = rl |. unsafeCoerce |. (left , value , right) in
create (create l v rll) rlv (create rlr rv rr)
end
end else
return @@ node ~left:l ~value:v ~right:r ~height:(if hl >= hr then hl + 1 else hr + 1)
let rec min0Aux n =
match toOpt (left n) with
| None -> value n
| Some n -> min0Aux n
let minimum n =
match toOpt n with
None -> None
| Some n -> Some (min0Aux n)
let minUndefined n =
match toOpt n with
| None -> Js.undefined
| Some n -> Js.Undefined.return (min0Aux n)
let rec max0Aux n =
match toOpt (right n) with
| None -> value n
| Some n -> max0Aux n
let maximum n =
match toOpt n with
| None -> None
| Some n -> Some (max0Aux n)
let maxUndefined n =
match toOpt n with
| None -> Js.undefined
| Some n -> Js.Undefined.return (max0Aux n)
let rec removeMinAuxWithRef n v =
let ln, rn, kn = n |. (left , right , value) in
match toOpt ln with
| None -> v:= kn ; rn
| Some ln -> bal (removeMinAuxWithRef ln v) kn rn
(* Implementation of the set operations *)
let isEmpty n = match toOpt n with Some _ -> false | None -> true
let rec stackAllLeft v s =
match toOpt v with
| None -> s
| Some x -> stackAllLeft (left x) (x::s)
let rec forEachU n f =
match toOpt n with
| None -> ()
| Some n ->
forEachU (left n) f; f (value n) [@bs]; forEachU (right n) f
let forEach n f = forEachU n (fun [@bs] a -> f a)
let rec reduceU s accu f =
match toOpt s with
| None -> accu
| Some n ->
let l,k,r = n |. (left, value, right) in
reduceU
r
(f (reduceU l accu f) k [@bs]) f
let reduce s accu f = reduceU s accu (fun [@bs] a b -> f a b)
let rec everyU n p =
match toOpt n with
| None -> true
| Some n ->
p (value n) [@bs] &&
n |. left |. everyU p &&
n |. right |. everyU p
let every n p = everyU n (fun [@bs] a -> p a )
let rec someU n p =
match toOpt n with
| None -> false
| Some n ->
p (value n) [@bs] ||
n |. left |. someU p ||
n |. right |. someU p
let some n p = someU n (fun[@bs] a -> p a )
(* [addMinElement v n] and [addMaxElement v n]
assume that the added v is *strictly*
smaller (or bigger) than all the present elements in the tree.
They are only used during the "join" operation which
respects this precondition.
*)
let rec addMinElement n v =
match toOpt n with
| None -> singleton v
| Some n ->
bal (addMinElement (left n) v) (value n) (right n)
let rec addMaxElement n v =
match toOpt n with
| None -> singleton v
| Some n ->
bal (left n) (value n) (addMaxElement (right n) v)
(* [join ln v rn] return a balanced tree simliar to [create ln v rn]
bal, but no assumptions are made on the
relative heights of [ln] and [rn]. *)
let rec joinShared ln v rn =
match (toOpt ln, toOpt rn) with
(None, _) -> addMinElement rn v
| (_, None) -> addMaxElement ln v
| Some l, Some r ->
let lh = height l in
let rh = height r in
if lh > rh + 2 then bal (left l) (value l) (joinShared (right l) v rn) else
if rh > lh + 2 then bal (joinShared ln v (left r)) (value r) (right r) else
create ln v rn
(* [concat l r]
No assumption on the heights of l and r. *)
let concatShared t1 t2 =
match (toOpt t1, toOpt t2) with
(None, _) -> t2
| (_, None) -> t1
| (_, Some t2n) ->
let v = ref (value t2n ) in
let t2r = removeMinAuxWithRef t2n v in
joinShared t1 !v t2r
let rec partitionSharedU n p =
match toOpt n with
| None -> (empty, empty)
| Some n ->
let value = value n in
let (lt, lf) = partitionSharedU (left n) p in
let pv = p value [@bs] in
let (rt, rf) = partitionSharedU (right n) p in
if pv
then (joinShared lt value rt, concatShared lf rf)
else (concatShared lt rt, joinShared lf value rf)
let partitionShared n p = partitionSharedU n (fun [@bs] a -> p a)
let rec lengthNode n =
let l, r = n |. (left , right) in
let sizeL =
match toOpt l with
| None -> 0
| Some l ->
lengthNode l in
let sizeR =
match toOpt r with
| None -> 0
| Some r -> lengthNode r in
1 + sizeL + sizeR
let size n =
match toOpt n with
| None -> 0
| Some n ->
lengthNode n
let rec toListAux n accu =
match toOpt n with
| None -> accu
| Some n ->
toListAux
(left n)
((value n) :: toListAux (right n) accu)
let toList s =
toListAux s []
let rec checkInvariantInternal (v : _ t) =
match toOpt v with
| None -> ()
| Some n ->
let l,r = n |. (left , right) in
let diff = treeHeight l - treeHeight r in
[%assert diff <=2 && diff >= -2];
checkInvariantInternal l;
checkInvariantInternal r
let rec fillArray n i arr =
let l,v,r = n |. (left, value, right) in
let next =
match toOpt l with
| None -> i
| Some l ->
fillArray l i arr in
A.setUnsafe arr next v ;
let rnext = next + 1 in
match toOpt r with
| None -> rnext
| Some r ->
fillArray r rnext arr
type cursor =
{ mutable forward : int; mutable backward : int } [@@bs.deriving abstract]
let rec fillArrayWithPartition n cursor arr p =
let l,v,r = n |. (left , value , right) in
(match toOpt l with
| None -> ()
| Some l ->
fillArrayWithPartition l cursor arr p);
(if p v [@bs] then begin
let c = forward cursor in
A.setUnsafe arr c v;
forwardSet cursor (c + 1)
end
else begin
let c = backward cursor in
A.setUnsafe arr c v ;
backwardSet cursor (c - 1)
end);
match toOpt r with
| None -> ()
| Some r ->
fillArrayWithPartition r cursor arr p
let rec fillArrayWithFilter n i arr p =
let l,v,r = n |. (left , value , right) in
let next =
match toOpt l with
| None -> i
| Some l ->
fillArrayWithFilter l i arr p in
let rnext =
if p v [@bs] then
(A.setUnsafe arr next v;
next + 1
)
else next in
match toOpt r with
| None -> rnext
| Some r ->
fillArrayWithFilter r rnext arr p
let toArray n =
match toOpt n with
| None -> [||]
| Some n ->
let size = lengthNode n in
let v = A.makeUninitializedUnsafe size in
ignore (fillArray n 0 v : int); (* may add assertion *)
v
let rec fromSortedArrayRevAux arr off len =
match len with
| 0 -> empty
| 1 -> singleton (A.getUnsafe arr off)
| 2 ->
let x0,x1 = A.(getUnsafe arr off, getUnsafe arr (off - 1) )
in
return @@ node ~left:(singleton x0) ~value:x1 ~height:2 ~right:empty
| 3 ->
let x0,x1,x2 =
A.(getUnsafe arr off,
getUnsafe arr (off - 1),
getUnsafe arr (off - 2)) in
return @@ node ~left:(singleton x0)
~right:(singleton x2)
~value:x1
~height:2
| _ ->
let nl = len / 2 in
let left = fromSortedArrayRevAux arr off nl in
let mid = A.getUnsafe arr (off - nl) in
let right =
fromSortedArrayRevAux arr (off - nl - 1) (len - nl - 1) in
create left mid right
let rec fromSortedArrayAux arr off len =
match len with
| 0 -> empty
| 1 -> singleton (A.getUnsafe arr off)
| 2 ->
let x0,x1 = A.(getUnsafe arr off, getUnsafe arr (off + 1) )
in
return @@ node ~left:(singleton x0) ~value:x1 ~height:2 ~right:empty
| 3 ->
let x0,x1,x2 =
A.(getUnsafe arr off,
getUnsafe arr (off + 1),
getUnsafe arr (off + 2)) in
return @@ node ~left:(singleton x0)
~right:(singleton x2)
~value:x1
~height:2
| _ ->
let nl = len / 2 in
let left = fromSortedArrayAux arr off nl in
let mid = A.getUnsafe arr (off + nl) in
let right =
fromSortedArrayAux arr (off + nl + 1) (len - nl - 1) in
create left mid right
let fromSortedArrayUnsafe arr =
fromSortedArrayAux arr 0 (A.length arr)
let rec keepSharedU n p =
match toOpt n with
| None -> empty
| Some n ->
let l,v,r = n |. (left, value, right) in
let newL = keepSharedU l p in
let pv = p v [@bs] in
let newR = keepSharedU r p in
if pv then
(if l == newL && r == newR then
return n
else joinShared newL v newR)
else concatShared newL newR
let keepShared n p = keepSharedU n (fun [@bs] a -> p a)
(* ATT: functional methods in general can be shared with
imperative methods, however, it does not apply when functional
methods makes use of referential equality
*)
let keepCopyU n p : _ t =
match toOpt n with
| None -> empty
| Some n ->
let size = lengthNode n in
let v = A.makeUninitializedUnsafe size in
let last =
fillArrayWithFilter n 0 v p in
fromSortedArrayAux v 0 last
let keepCopy n p = keepCopyU n (fun [@bs] x -> p x)
let partitionCopyU n p =
match toOpt n with
| None -> empty, empty
| Some n ->
let size = lengthNode n in
let v = A.makeUninitializedUnsafe size in
let backward = size - 1 in
let cursor = cursor ~forward:0 ~backward in
fillArrayWithPartition n cursor v p ;
let forwardLen = forward cursor in
fromSortedArrayAux v 0 forwardLen,
fromSortedArrayRevAux v backward (size - forwardLen)
let partitionCopy n p = partitionCopyU n (fun[@bs] a -> p a)
let rec has (t: _ t) x ~cmp =
match toOpt t with
| None -> false
| Some n ->
let v = value n in
let c = (Belt_Id.getCmpInternal cmp) x v [@bs] in
c = 0 || has ~cmp (if c < 0 then left n else right n) x
let rec compareAux e1 e2 ~cmp =
match e1,e2 with
| h1::t1, h2::t2 ->
let c = (Belt_Id.getCmpInternal cmp) (value h1) (value h2) [@bs] in
if c = 0 then
compareAux ~cmp
(h1 |. right |. stackAllLeft t1)
(h2 |. right |. stackAllLeft t2)
else c
| _, _ -> 0
let cmp s1 s2 ~cmp =
let len1,len2 = size s1, size s2 in
if len1 = len2 then
compareAux ~cmp (stackAllLeft s1 []) (stackAllLeft s2 [])
else if len1 < len2 then -1 else 1
let eq s1 s2 ~cmp:c =
cmp ~cmp:c s1 s2 = 0
let rec subset (s1 : _ t) (s2 : _ t) ~cmp =
match (toOpt s1, toOpt s2) with
| None, _ -> true
| _, None -> false
| Some t1 , Some t2 ->
let l1,v1,r1 = t1 |. (left, value, right) in
let l2,v2,r2 = t2 |. (left, value, right) in
let c = (Belt_Id.getCmpInternal cmp) v1 v2 [@bs] in
if c = 0 then
subset ~cmp l1 l2 && subset ~cmp r1 r2
else if c < 0 then
subset ~cmp (create l1 v1 empty) l2 &&
subset ~cmp r1 s2
else
subset ~cmp (create empty v1 r1 ) r2 &&
subset ~cmp l1 s2
let rec get (n : _ t) x ~cmp =
match toOpt n with
None -> None
| Some t (* Node(l, v, r, _) *) ->
let v = value t in
let c = (Belt_Id.getCmpInternal cmp) x v [@bs] in
if c = 0 then Some v
else get ~cmp (if c < 0 then left t else right t) x
let rec getUndefined (n : _ t) x ~cmp =
match toOpt n with
None -> Js.Undefined.empty
| Some t (* Node(l, v, r, _) *) ->
let v = value t in
let c = (Belt_Id.getCmpInternal cmp) x v [@bs] in
if c = 0 then Js.Undefined.return v
else getUndefined ~cmp (if c < 0 then left t else right t) x
let rec getExn (n : _ t) x ~cmp =
match toOpt n with
None -> [%assert "getExn0"]
| Some t (* Node(l, v, r, _) *) ->
let v = value t in
let c = (Belt_Id.getCmpInternal cmp) x v [@bs] in
if c = 0 then v
else getExn ~cmp (if c < 0 then left t else right t) x
(******************************************************************)
(*
L rotation, return root node
*)
let rotateWithLeftChild k2 =
let k1 = k2 |. left |. unsafeCoerce in
k2 |. leftSet (k1 |. right);
k1 |. rightSet (return k2 );
let hlk2, hrk2 = k2 |. left |. treeHeight , k2 |. right |. treeHeight in
k2 |. heightSet (Pervasives.max hlk2 hrk2 + 1);
let hlk1, hk2 = k1 |. left |. treeHeight , k2 |. height in
k1 |. heightSet (Pervasives.max hlk1 hk2 + 1);
k1
(* right rotation *)
let rotateWithRightChild k1 =
let k2 = k1 |. right |. unsafeCoerce in
k1 |. rightSet (k2 |. left);
k2 |. leftSet (return k1);
let hlk1, hrk1 = k1 |. left |. treeHeight, k1 |. right |. treeHeight in
k1 |. heightSet (Pervasives.max hlk1 hrk1 + 1);
let hrk2, hk1 = k2 |. right |. treeHeight, k1 |. height in
k2 |. heightSet (Pervasives.max hrk2 hk1 + 1);
k2
(*
double l rotation
*)
let doubleWithLeftChild k3 =
let v = k3 |. left |. unsafeCoerce |. rotateWithRightChild |. return in
k3 |. leftSet v;
k3 |. rotateWithLeftChild
(** *)
let doubleWithRightChild k2 =
let v = k2 |. right |. unsafeCoerce |. rotateWithLeftChild |. return in
k2 |. rightSet v;
rotateWithRightChild k2
let heightUpdateMutate t =
let hlt, hrt = t |. left |. treeHeight, t |. right |. treeHeight in
t |. heightSet (Pervasives.max hlt hrt + 1);
t
let balMutate nt =
let l, r = nt |. (left, right) in
let hl, hr = (treeHeight l, treeHeight r) in
if hl > 2 + hr then
let ll, lr = l |. unsafeCoerce |. (left , right)in
(if heightGe ll lr then
heightUpdateMutate (rotateWithLeftChild nt)
else
heightUpdateMutate (doubleWithLeftChild nt)
)
else
if hr > 2 + hl then
let rl,rr = r |. unsafeCoerce |. (left, right) in
(if heightGe rr rl then
heightUpdateMutate (rotateWithRightChild nt)
else
heightUpdateMutate (doubleWithRightChild nt)
)
else
begin
heightSet nt (max hl hr + 1);
nt
end
let rec addMutate ~cmp (t : _ t) x =
match toOpt t with
| None -> singleton x
| Some nt ->
let k = value nt in
let c = (Belt_Id.getCmpInternal cmp) x k [@bs] in
if c = 0 then t
else
let l, r = nt |. (left, right) in
(if c < 0 then
let ll = addMutate ~cmp l x in
leftSet nt ll
else
rightSet nt (addMutate ~cmp r x);
);
return (balMutate nt)
let fromArray (xs : _ array) ~cmp =
let len = A.length xs in
if len = 0 then empty
else
let next = ref (S.strictlySortedLengthU xs
(fun [@bs] x y -> (Belt_Id.getCmpInternal cmp) x y [@bs] < 0)) in
let result =
ref (if !next >= 0 then
fromSortedArrayAux xs 0 !next
else begin
next := - !next ;
fromSortedArrayRevAux xs (!next - 1) !next
end) in
for i = !next to len - 1 do
result := addMutate ~cmp !result (A.getUnsafe xs i)
done ;
!result
let rec removeMinAuxWithRootMutate nt n =
let rn, ln = n |. (right , left ) in
match toOpt ln with
| None ->
valueSet nt (value n);
rn
| Some ln ->
leftSet n (removeMinAuxWithRootMutate nt ln);
return (balMutate n)