rust-adt 0.0.1

Implementation of common collections
Documentation
  • Coverage
  • 0%
    0 out of 9 items documented0 out of 4 items with examples
  • Size
  • Source code size: 5.29 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.37 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • wutchzone

Documentation

Heap

Maximal heap

Insert: O(n*log(n))

Find max: O(1)

Extract max: O(n*log(n))

Union: O(n^2*log(n))