truetree 0.1.3

Trees in Rust
Documentation
  • Coverage
  • 83.33%
    25 out of 30 items documented0 out of 27 items with examples
  • Size
  • Source code size: 70.16 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 2.85 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 9s Average build duration of successful builds.
  • all releases: 9s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • hube12

TrueTree: an implementation of binary balanced tree

This is a balanced tree implementation (also called as AVL tree)

We allow you to define a custom type T to pass a the tree payload

This payload should have the clone, ord, eq and debug trait derived

The Ord trait is used to insert the values and to get it (this allow to match only partial payload)

The Eq trait is used to remove a node

The Clone trait is used to copy the value inside the tree