youjinbou / algo_tree

various tree data structures implementations

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

This is a repository of different tree structure implementations in Ocaml.
At the moment, only 2 kinds of trees are present: Red Black tree and B-tree.
The former has 2 implementations available: imperative and functional.
The later is only implemented in imperative style (a functional implementation probably would not make sense).

In all truth, it would be certainly safer to use the Ocaml provided Set or Map instead. Yet, I choose to provide 
this code in the hope that someone find it useful.

This code is provided under the GPL licence.

About

various tree data structures implementations


Languages

Language:OCaml 99.5%Language:Shell 0.5%