Created
March 3, 2018 16:37
-
-
Save konn/08d15b6ca6bcebe011ad44a5a7cab340 to your computer and use it in GitHub Desktop.
Naive Binary heap in SATySFi
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
% 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
commented
Mar 3, 2018
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment