-
Notifications
You must be signed in to change notification settings - Fork 465
/
Copy pathbelt_SetDict.ml
237 lines (215 loc) · 6.69 KB
/
belt_SetDict.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
(* Copyright (C) 2017 Hongbo Zhang, Authors of ReScript
*
* 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. *)
module N = Belt_internalAVLset
module A = Belt_Array
type ('k,'id) t = 'k N.t
type ('key, 'id) cmp = ('key, 'id) Belt_Id.cmp
(* here we relies on reference transparence
address equality means everything equal across time
no need to call `bal` again
*)
let rec add (t : _ t) x ~cmp : _ t =
match t with
| None -> N.singleton x
| Some nt ->
let k = nt.value in
let c = (Belt_Id.getCmpInternal cmp) x k [@bs] in
if c = 0 then t
else
let {N.left = l; right = r} = nt in
if c < 0 then
let ll = add ~cmp l x in
if ll == l then t
else N.bal ll k r
else
let rr = add ~cmp r x in
if rr == r then t
else N.bal l k rr
let rec remove (t : _ t) x ~cmp : _ t =
match t with
None -> t
| Some n ->
let {N.left = l; value = v; right = r} = n in
let c = (Belt_Id.getCmpInternal cmp) x v [@bs] in
if c = 0 then
match l, r with
| (None, _) -> r
| (_, None) -> l
| (_, Some rn) ->
let v = ref rn.value in
let r = N.removeMinAuxWithRef rn v in
N.bal l v.contents r
else
if c < 0 then
let ll = remove ~cmp l x in
if ll == l then t
else N.bal ll v r
else
let rr = remove ~cmp r x in
if rr == r then t
else N.bal l v rr
let mergeMany h arr ~cmp =
let len = A.length arr in
let v = ref h in
for i = 0 to len - 1 do
let key = A.getUnsafe arr i in
v .contents<- add v.contents ~cmp key
done ;
v.contents
let removeMany h arr ~cmp =
let len = A.length arr in
let v = ref h in
for i = 0 to len - 1 do
let key = A.getUnsafe arr i in
v .contents<- remove v.contents ~cmp key
done ;
v.contents
let rec splitAuxNoPivot ~cmp (n : _ N.node) x : _ * _ =
let {N.left = l; value = v; right = r} = n in
let c = (Belt_Id.getCmpInternal cmp) x v [@bs] in
if c = 0 then l,r
else
if c < 0 then
match l with
| None ->
None , Some n
| Some l ->
let (ll, rl) = splitAuxNoPivot ~cmp l x in
ll, N.joinShared rl v r
else
match r with
| None ->
Some n, None
| Some r ->
let lr, rr = splitAuxNoPivot ~cmp r x in
N.joinShared l v lr, rr
let rec splitAuxPivot ~cmp (n : _ N.node) x pres : _ * _ =
let {N.left = l; value = v; right = r} = n in
let c = (Belt_Id.getCmpInternal cmp) x v [@bs] in
if c = 0 then
begin
pres .contents<- true;
l, r
end
else
if c < 0 then
match l with
| None ->
None , Some n
| Some l ->
let (ll, rl) = splitAuxPivot ~cmp l x pres in
ll, N.joinShared rl v r
else
match r with
| None ->
Some n, None
| Some r ->
let lr, rr = splitAuxPivot ~cmp r x pres in
N.joinShared l v lr, rr
let split (t : _ t) x ~cmp =
match t with
None ->
(None, None), false
| Some n ->
let pres = ref false in
let v = splitAuxPivot ~cmp n x pres in
v, pres.contents
(* `union s1 s2`
Use the pivot to split the smaller collection
*)
let rec union (s1 : _ t) (s2 : _ t) ~cmp : _ t =
match s1, s2 with
(None, _) -> s2
| (_, None) -> s1
| Some n1, Some n2 ->
let h1, h2 = n1.height , n2.height in
if h1 >= h2 then
if h2 = 1 then add ~cmp s1 n2.value
else begin
let {N.left = l1; value = v1; right = r1} = n1 in
let l2, r2 = splitAuxNoPivot ~cmp n2 v1 in
N.joinShared (union ~cmp l1 l2) v1 (union ~cmp r1 r2)
end
else
if h1 = 1 then add s2 ~cmp n1.value
else begin
let {N.left = l2; value = v2; right = r2 } = n2 in
let l1, r1 = splitAuxNoPivot ~cmp n1 v2 in
N.joinShared (union ~cmp l1 l2) v2 (union ~cmp r1 r2)
end
let rec intersect (s1 : _ t) (s2 : _ t) ~cmp =
match s1, s2 with
| None, _
| _, None -> None
| Some n1, Some n2 ->
let {N.left = l1; value = v1; right = r1 } = n1 in
let pres = ref false in
let l2,r2 = splitAuxPivot ~cmp n2 v1 pres in
let ll = intersect ~cmp l1 l2 in
let rr = intersect ~cmp r1 r2 in
if pres.contents then N.joinShared ll v1 rr
else N.concatShared ll rr
let rec diff s1 s2 ~cmp =
match s1, s2 with
(None, _)
| (_, None) -> s1
| Some n1, Some n2 ->
let {N.left = l1; value = v1; right = r1} = n1 in
let pres = ref false in
let l2, r2 = splitAuxPivot ~cmp n2 v1 pres in
let ll = diff ~cmp l1 l2 in
let rr = diff ~cmp r1 r2 in
if pres.contents then N.concatShared ll rr
else N.joinShared ll v1 rr
let empty = None
let fromArray = N.fromArray
let isEmpty = N.isEmpty
let cmp = N.cmp
let eq = N.eq
let has = N.has
let forEachU = N.forEachU
let forEach = N.forEach
let reduceU = N.reduceU
let reduce = N.reduce
let everyU = N.everyU
let every = N.every
let someU = N.someU
let some = N.some
let size = N.size
let toList = N.toList
let toArray = N.toArray
let minimum = N.minimum
let maximum = N.maximum
let maxUndefined = N.maxUndefined
let minUndefined = N.minUndefined
let get = N.get
let getExn = N.getExn
let getUndefined = N.getUndefined
let fromSortedArrayUnsafe = N.fromSortedArrayUnsafe
let subset = N.subset
let keep = N.keepShared
let keepU = N.keepSharedU
let partitionU = N.partitionSharedU
let partition = N.partitionShared
let checkInvariantInternal = N.checkInvariantInternal