Source file HeightSet.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
# 1 "Height.cppo.ml"
(******************************************************************************)
(*                                                                            *)
(*                                    Baby                                    *)
(*                                                                            *)
(*                       François Pottier, Inria Paris                        *)
(*                                                                            *)
(*       Copyright 2024--2024 Inria. All rights reserved. This file is        *)
(*       distributed under the terms of the GNU Library General Public        *)
(*       License, with an exception, as described in the file LICENSE.        *)
(*                                                                            *)
(******************************************************************************)

(* The following code taken from OCaml's Set library, and slightly adapted. *)

let[@inline] max (x : int) (y : int) =
  if x <= y then y else x

(* In the following, some functions have nontrivial preconditions:
   [join] and its variants require [l < v < r];
   [of_sorted_unique_array_slice] requires a sorted array.
   Here, we do not have access to the ordering function [E.compare],
   so we do not write assertions to check that these preconditions
   are met. *)

(* Trees are height-balanced. Each node stores its height. The heights
   of two siblings differ by at most 2. *)

# 1 "TreeDef.frag.ml"
(******************************************************************************)
(*                                                                            *)
(*                                    Baby                                    *)
(*                                                                            *)
(*                       François Pottier, Inria Paris                        *)
(*                                                                            *)
(*       Copyright 2024--2024 Inria. All rights reserved. This file is        *)
(*       distributed under the terms of the GNU Library General Public        *)
(*       License, with an exception, as described in the file LICENSE.        *)
(*                                                                            *)
(******************************************************************************)

(* The following type definitions, macros, and code are shared between
   several kinds of trees, namely height-balanced and weight-balanced
   trees. *)

(* Each node stores its left child, key, right child, plus extra
   (balancing) information. We assume that the macro [EXTRA]
   describes these extra fields. *)

(* In the case of sets, each node carries a value [v] of type ['v].

   In the case of maps, we could use the same type definition, and later
   instantiate ['v] with the product type ['key * 'data]. However, this
   would create an indirection: every node would involve two distinct memory
   blocks. Instead, we fuse these two memory blocks into a single one: each
   node carries a key [k] and a datum [d]. OCaml's [constraint] keyword is
   used to impose an equality between the types ['v] and ['key * 'data].

   This non-standard representation requires us to construct a pair in the
   macro [ANALYZE] and to deconstruct a pair in the function [create''].
   It has no other impact. *)


  
# 36 "TreeDef.frag.ml"
  type 'v tree =
    | TLeaf
    | TNode of { l : 'v tree; v : 'v;              r : 'v tree; 
# 38 "TreeDef.frag.ml"
                                                                 h : int  
# 38 "TreeDef.frag.ml"
                                                                      }


# 49 "TreeDef.frag.ml"
(* This macro destructs a tree [t].
   In case of a leaf, [case_leaf] is returned.
   In case of a node, the variables [tl], [tv], [tr] are bound.
   This macro must be followed with a semicolon;
   the code that follows this macro becomes part
   of the second branch of the [match] construct. *)




# 80 "TreeDef.frag.ml"
(* This function is not inlined, so as to reduce code size and produce
   more readable assembly code. *)
let impossible () =
  assert false

(* This macro destructs a tree [t] that is known not to be a leaf.
   It binds the variables [tl], [tv], [tr].
   It is intended to be followed with a semicolon. *)


# 92 "TreeDef.frag.ml"
(* A public view. *)

type 'v view =
  | Leaf
  | Node of 'v tree * 'v * 'v tree

let[@inline] view t =
  
# 99 "TreeDef.frag.ml"
  
    match t with
    | TLeaf ->
         Leaf
    | TNode { l =  l; v =  v; r =  r; _ } ->
        ()
 
# 99 "TreeDef.frag.ml"
                           ;
  Node (l, v, r)

let leaf =
  TLeaf

# 31 "Height.cppo.ml"
(* [height t] reads and returns the height of the tree [t]. *)

let[@inline] height t =
  match t with
  | TLeaf ->
      0
  | TNode { h; _ } ->
      h

(* The weight of a tree cannot be determined in constant time. *)

let[@inline] weight _t =
  0

(* The cardinal of a tree cannot be determined in constant time. *)

(* This is a linear-time [cardinal] function. *)

let constant_time_cardinal =
  false

let rec cardinal accu t : int =
  match t with
  | TLeaf ->
      accu
  | TNode { l; r; _ } ->
      let accu = accu + 1 in
      let accu = cardinal accu l in
      cardinal accu r

let cardinal t : int =
  cardinal 0 t

(* [siblings l r] checks that [l] and [r] are siblings, that is, they
   could be siblings (the children of a binary node) in a valid tree. *)

(* [quasi_siblings l r] checks that [l] and [r] are quasi-siblings,
   that is, siblings where one tree has been disturbed by removing or
   adding one element. *)

let siblings l r =
  abs (height l - height r) <= 2

let quasi_siblings l r =
  abs (height l - height r) <= 3

(* A well-formedness check. *)

let rec check t =
  match t with
  | TLeaf ->
      ()
  | TNode { l; r; h; _ } ->
      check l;
      check r;
      assert (h = max (height l) (height r) + 1);
      assert (siblings l r)

(* [create l v r] requires [l < v < r]. It constructs a node with left child
   [l], value [v], and right child [r]. The subtrees [l] and [r] must be
   balanced, and the difference in their heights must be at most 2. *)

(* [create'' h l v r] is analogous, but requires the user to provide the
   height [h] of the new tree. *)

let[@inline] create'' h l v r =
  assert (siblings l r);
  assert (h = max (height l) (height r) + 1);
  
# 100 "Height.cppo.ml"
  TNode { l; v; r; h }

# 107 "Height.cppo.ml"
let[@inline] create l v r =
  let h = max (height l) (height r) + 1 in
  create'' h l v r

(* [create] is published under the name [join_siblings]. *)

let join_siblings =
  create

(* Trees of one, two, three elements. *)

(* [doubleton x y] requires [x < y].
   [tripleton x y z] requires [x < y < z]. *)

let[@inline] singleton x =
  (* This is equivalent to [create TLeaf x TLeaf]. *)
  let h = 1 in
  create'' h TLeaf x TLeaf

let[@inline] doubleton x y =
  let h = 2 in
  create'' h TLeaf x (singleton y)

let[@inline] tripleton x y z =
  let h = 2 in
  create'' h (singleton x) y (singleton z)

(* Trees of [n] elements. *)

# 1 "OfSortedUniqueArraySlice.frag.ml"
(******************************************************************************)
(*                                                                            *)
(*                                    Baby                                    *)
(*                                                                            *)
(*                       François Pottier, Inria Paris                        *)
(*                                                                            *)
(*       Copyright 2024--2024 Inria. All rights reserved. This file is        *)
(*       distributed under the terms of the GNU Library General Public        *)
(*       License, with an exception, as described in the file LICENSE.        *)
(*                                                                            *)
(******************************************************************************)

(* [of_sorted_unique_array_slice a i j] requires the array slice defined by
   array [a], start index [i], and end index [j] to be sorted and to contain
   no duplicate elements. It converts this array slice, in linear time, to a
   tree. *)

(* Making this function part of the signatures [BASE_SET] and [BASE_MAP]
   removes the need to export [doubleton], [tripleton], etc. *)

let rec of_sorted_unique_array_slice a i j =
  assert (0 <= i && i <= j && j <= Array.length a);
  let n = j - i in
  match n with
  | 0 ->
      TLeaf
  | 1 ->
      let x = a.(i) in
      singleton x
  | 2 ->
      let x = a.(i)
      and y = a.(i+1) in
      doubleton x y
  | 3 ->
      let x = a.(i)
      and y = a.(i+1)
      and z = a.(i+2) in
      tripleton x y z
  | _ ->
      let k = i + n/2 in
      let l = of_sorted_unique_array_slice a i k
      and v = a.(k)
      and r = of_sorted_unique_array_slice a (k+1) j in
      (* Here, we know that the trees [l] and [r] have balanced weights,
         and we assume that this implies [siblings l r]. *)
      join_siblings l v r

# 138 "Height.cppo.ml"
(* [seems_smaller t1 t2] is equivalent to [height t1 < height t2]. *)

let[@inline] seems_smaller t1 t2 =
  match t1, t2 with
  | TLeaf, TLeaf ->
      false
  | TLeaf, _ ->
      true
  | _, TLeaf ->
      false
  | TNode { h = h1; _ }, TNode { h = h2; _ } ->
      h1 < h2

(* [bal l v r] requires [l < v < r]. It constructs a node with left child
   [l], value [v], and right child [r]. The subtrees [l] and [r] must be
   balanced, and the difference in their heights must be at most 3. If
   necessary, one step of rebalancing is performed. *)

(* Because [create] calls [height], this code involves several redundant
   computations of the height of a subtree. However, modifying the code to
   avoid this redundancy makes it much less readable and makes no measurable
   difference in the run time. *)

let bal l v r =
  assert (quasi_siblings l r);
  let hl = height l
  and hr = height r in
  if hl > hr + 2 then begin
    
# 166 "Height.cppo.ml"
     
  
    match l with
    | TLeaf ->
         impossible()
    | TNode { l =   ll; v =   lv; r =   lr; _ } ->
        ()
  
# 166 "Height.cppo.ml"
                           ;
    if height ll >= height lr then
      create ll lv (create lr v r)
    else begin
      
# 170 "Height.cppo.ml"
       
  
    match lr with
    | TLeaf ->
         impossible()
    | TNode { l =   lrl; v =   lrv; r =   lrr; _ } ->
        ()
  
# 170 "Height.cppo.ml"
                                 ;
      create (create ll lv lrl) lrv (create lrr v r)
    end
  end
  else if hr > hl + 2 then begin
    
# 175 "Height.cppo.ml"
     
  
    match r with
    | TLeaf ->
         impossible()
    | TNode { l =   rl; v =   rv; r =   rr; _ } ->
        ()
  
# 175 "Height.cppo.ml"
                           ;
    if height rr >= height rl then
      create (create l v rl) rv rr
    else begin
      
# 179 "Height.cppo.ml"
       
  
    match rl with
    | TLeaf ->
         impossible()
    | TNode { l =   rll; v =   rlv; r =   rlr; _ } ->
        ()
  
# 179 "Height.cppo.ml"
                                 ;
      create (create l v rll) rlv (create rlr rv rr)
    end
  end
  else
    (* This is equivalent to [create l v r]. *)
    let h = max hl hr + 1 in
    create'' h l v r

let join_quasi_siblings =
  bal

(* [add_min_element x t] requires [x < t]. It is the special case of
   [join] where the left-hand tree is empty. *)

let rec add_min_element x t =
  (* If [t] is empty, return [singleton x], otherwise bind [l, v, r]. *)
  
# 196 "Height.cppo.ml"
  
    match t with
    | TLeaf ->
         singleton x
    | TNode { l =  l; v =  v; r =  r; _ } ->
        ()
 
# 196 "Height.cppo.ml"
                                  ;
  (* Insert [x] into the left-hand child and reconstruct a node. *)
  bal (add_min_element x l) v r

(* [add_max_element x t] requires [t < x]. It is the special case of
   [join] where the right-hand tree is empty. *)

let rec add_max_element x t =
  
# 204 "Height.cppo.ml"
  
    match t with
    | TLeaf ->
         singleton x
    | TNode { l =  l; v =  v; r =  r; _ } ->
        ()
 
# 204 "Height.cppo.ml"
                                  ;
  bal l v (add_max_element x r)

(* [join l v r] requires [l < v < r]. It makes no assumptions about
   the heights of the subtrees [l] and [r]. *)

(* Sharing the code between the set and map variants by using our tree
   destruction macros, without introducing any overhead, is not so easy.
   It is easier to not use the tree destruction macros and duplicate a few
   lines of code, as follows. *)

let rec join l v r =
  match l, r with
  | TLeaf, _ ->
      add_min_element v r
  | _, TLeaf ->
      add_max_element v l
  
# 222 "Height.cppo.ml"
  | TNode { l = ll; v = lv; r = lr; h = hl },
    TNode { l = rl; v = rv; r = rr; h = hr } ->
      if hl > hr + 2 then bal ll lv (join lr v r) else
      if hr > hl + 2 then bal (join l v rl) rv rr else
      create l v r