Skip to content

Instantly share code, notes, and snippets.

@konn
Created March 3, 2018 16:37
Show Gist options
  • Save konn/08d15b6ca6bcebe011ad44a5a7cab340 to your computer and use it in GitHub Desktop.
Save konn/08d15b6ca6bcebe011ad44a5a7cab340 to your computer and use it in GitHub Desktop.
Naive Binary heap in SATySFi
% Naive (unbalanced) binary heap
module IntMap : sig
type 'a intmap
val singleton : int -> 'a -> 'a intmap
val empty : 'a intmap
val insert : int -> 'a -> 'a intmap -> 'a intmap
val lookup : int -> 'a intmap -> 'a option
end = struct
type 'a intmap =
| Branch of 'a intmap * (int * 'a) * 'a intmap
| Leaf
let empty = Leaf
let singleton i a = Branch(Leaf, (i, a), Leaf)
let-rec from-list =
let-rec insert
| i a tree =
match tree with
| Branch(l, (j, b), r) ->
if i == j
then Branch(l, (i, a), r)
else if i < j
then Branch(insert i a l, (j, b), r)
else Branch(l, (j, b), insert i a r)
| Leaf -> Branch(Leaf, (i, a), Leaf)
let-rec lookup
| i Leaf = None
| i Branch(l, (j, a), r) =
if i == j
then Some(a)
else if i < j
then lookup i l
else lookup i r
end
@gfngfn
Copy link

gfngfn commented Mar 3, 2018

  let-rec lookup
  | i Leaf = None
  | i (Branch(l, (j, a), r)) =
      if i == j
      then Some(a)
      else if i < j
      then lookup i l
      else lookup i r

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment