-
Notifications
You must be signed in to change notification settings - Fork 464
/
Copy pathBelt_SetDict.res
264 lines (247 loc) · 6.69 KB
/
Belt_SetDict.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
/* 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 t<'k, 'id> = N.t<'k>
type cmp<'key, 'id> = Belt_Id.cmp<'key, 'id>
/* 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<_> =>
switch t {
| None => N.singleton(x)
| Some(nt) =>
let k = nt.value
let c = Belt_Id.getCmpInternal(cmp)(x, k)
if c == 0 {
t
} else {
let {N.left: l, right: r} = nt
if c < 0 {
let ll = add(~cmp, l, x)
if ll === l {
t
} else {
N.bal(ll, k, r)
}
} else {
let rr = add(~cmp, r, x)
if rr === r {
t
} else {
N.bal(l, k, rr)
}
}
}
}
let rec remove = (t: t<_>, x, ~cmp): t<_> =>
switch t {
| None => t
| Some(n) =>
let {N.left: l, value: v, right: r} = n
let c = Belt_Id.getCmpInternal(cmp)(x, v)
if c == 0 {
switch (l, r) {
| (None, _) => r
| (_, None) => l
| (_, Some(rn)) =>
let v = ref(rn.value)
let r = N.removeMinAuxWithRef(rn, v)
N.bal(l, v.contents, r)
}
} else if c < 0 {
let ll = remove(~cmp, l, x)
if ll === l {
t
} else {
N.bal(ll, v, r)
}
} else {
let rr = remove(~cmp, r, x)
if rr === r {
t
} else {
N.bal(l, v, rr)
}
}
}
let mergeMany = (h, arr, ~cmp) => {
let len = A.length(arr)
let v = ref(h)
for i in 0 to len - 1 {
let key = A.getUnsafe(arr, i)
v.contents = add(v.contents, ~cmp, key)
}
v.contents
}
let removeMany = (h, arr, ~cmp) => {
let len = A.length(arr)
let v = ref(h)
for i in 0 to len - 1 {
let key = A.getUnsafe(arr, i)
v.contents = remove(v.contents, ~cmp, key)
}
v.contents
}
let rec splitAuxNoPivot = (~cmp, n: N.node<_>, x): (_, _) => {
let {N.left: l, value: v, right: r} = n
let c = Belt_Id.getCmpInternal(cmp)(x, v)
if c == 0 {
(l, r)
} else if c < 0 {
switch l {
| None => (None, Some(n))
| Some(l) =>
let (ll, rl) = splitAuxNoPivot(~cmp, l, x)
(ll, N.joinShared(rl, v, r))
}
} else {
switch r {
| None => (Some(n), None)
| Some(r) =>
let (lr, rr) = splitAuxNoPivot(~cmp, r, x)
(N.joinShared(l, v, lr), rr)
}
}
}
let rec splitAuxPivot = (~cmp, n: N.node<_>, x, pres): (_, _) => {
let {N.left: l, value: v, right: r} = n
let c = Belt_Id.getCmpInternal(cmp)(x, v)
if c == 0 {
pres.contents = true
(l, r)
} else if c < 0 {
switch l {
| None => (None, Some(n))
| Some(l) =>
let (ll, rl) = splitAuxPivot(~cmp, l, x, pres)
(ll, N.joinShared(rl, v, r))
}
} else {
switch r {
| None => (Some(n), None)
| Some(r) =>
let (lr, rr) = splitAuxPivot(~cmp, r, x, pres)
(N.joinShared(l, v, lr), rr)
}
}
}
let split = (t: t<_>, x, ~cmp) =>
switch t {
| None => ((None, None), false)
| Some(n) =>
let pres = ref(false)
let v = splitAuxPivot(~cmp, n, x, pres)
(v, pres.contents)
}
/* `union s1 s2`
Use the pivot to split the smaller collection
*/
let rec union = (s1: t<_>, s2: t<_>, ~cmp): t<_> =>
switch (s1, s2) {
| (None, _) => s2
| (_, None) => s1
| (Some(n1), Some(n2)) =>
let (h1, h2) = (n1.height, n2.height)
if h1 >= h2 {
if h2 == 1 {
add(~cmp, s1, n2.value)
} else {
let {N.left: l1, value: v1, right: r1} = n1
let (l2, r2) = splitAuxNoPivot(~cmp, n2, v1)
N.joinShared(union(~cmp, l1, l2), v1, union(~cmp, r1, r2))
}
} else if h1 == 1 {
add(s2, ~cmp, n1.value)
} else {
let {N.left: l2, value: v2, right: r2} = n2
let (l1, r1) = splitAuxNoPivot(~cmp, n1, v2)
N.joinShared(union(~cmp, l1, l2), v2, union(~cmp, r1, r2))
}
}
let rec intersect = (s1: t<_>, s2: t<_>, ~cmp) =>
switch (s1, s2) {
| (None, _)
| (_, None) =>
None
| (Some(n1), Some(n2)) =>
let {N.left: l1, value: v1, right: r1} = n1
let pres = ref(false)
let (l2, r2) = splitAuxPivot(~cmp, n2, v1, pres)
let ll = intersect(~cmp, l1, l2)
let rr = intersect(~cmp, r1, r2)
if pres.contents {
N.joinShared(ll, v1, rr)
} else {
N.concatShared(ll, rr)
}
}
let rec diff = (s1, s2, ~cmp) =>
switch (s1, s2) {
| (None, _)
| (_, None) => s1
| (Some(n1), Some(n2)) =>
let {N.left: l1, value: v1, right: r1} = n1
let pres = ref(false)
let (l2, r2) = splitAuxPivot(~cmp, n2, v1, pres)
let ll = diff(~cmp, l1, l2)
let rr = diff(~cmp, r1, r2)
if pres.contents {
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.forEach
let forEach = N.forEach
let reduceU = N.reduce
let reduce = N.reduce
let everyU = N.every
let every = N.every
let someU = N.some
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.keepShared
let partitionU = N.partitionShared
let partition = N.partitionShared
let checkInvariantInternal = N.checkInvariantInternal