Skip to content

hesterjeng/hsplay

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

43 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

hsplay

This is a WIP project meant to be an implementation of splay trees done in the style of the containers library for OCaml. The implementation is mostly imperative and is not guaranteed to work correctly.

Usage

To install the library, you should be able to clone this repository, and then install it through opam via opam install . in the project's directory.

module S = Hsplay.Make (CCInt);;
let s = S.create ();;
S.insert s 6;;
S.insert s 4;;
S.mem s 3;;
S.mem s 4;;

`

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published