This repository only serves an educational purpose. It implements a large number of data structures and algorithms from
the similarly named book by Clifford A. Schaffer. The term educational implies
that the focus is on sticking closely to the book and thus not strictly applying all of julia
's style recommendations
at all times.
A copy of Data Structures & Algorithm Analysis in C++ can be found here.
To make the package available one can use the built-in package manager from julia
to install it. Add the Package to the manifest
pkg> dev https://github.com/hesseltuinhof/DataStructures.jl.git
This only needs to be done the first time.
Then to play around with it, use using DataStructures
and to run the tests
pkg> test DataStructures