red-black

Crates.iored-black
lib.rsred-black
version0.1.0
sourcesrc
created_at2020-12-01 11:00:16.989035
updated_at2020-12-01 11:00:16.989035
descriptionA memory efficient inplementation of red-black tree
homepage
repository
max_upload_size
id318545
size37,021
(thirstycrow)

documentation

README

Red-Black Tree

The purpose of this library is to provide an algorithm framework that allows users to create memory efficient red-black tree.

The algorithm is implemented on top of the Node and NodePtr traits, instead of concrete structs. Users can define their own memory layout with techniques such as bit field or shorter memory address to reduce the per node memory footprint. Parent pointers are not necessary in this implementation to reduce memory consumption. Instead, a temporary tree which keeps the parent relationship is maintained on the call stack while traversing the tree nodes. As a result, this is not an in-place implementation.

Commit count: 0

cargo fmt