eldek-tad 0.9.0

A project for learning Abstract Data Types (ADTs) in Rust. Heavily inspired by Java's implementation.
Documentation
  • Coverage
  • 6.63%
    12 out of 181 items documented9 out of 108 items with examples
  • Size
  • Source code size: 121.28 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 13.81 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 38s Average build duration of successful builds.
  • all releases: 24s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • eldek0/tad-rust
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • eldek0

tad-rust

A project for learning Abstract Data Types (ADTs) in Rust. Heavily inspired by Java's implementations, so don't expect idiomatic Rust.

Structures

  • Linked List
  • Stack
  • Queue
  • Heap
  • Binary Tree
  • HashMap
  • Graph
  • Binary Search Tree (BST)
  • Prefix Tree

Features

  • Debug
  • Custom errors with thiserror
  • IntoIterator (for)
  • FromIterator (for with collect)
  • Add get_mut/peek_mut to the structures
  • Make a stack, linkedlist and queue from a Vec! with ::from_vec
  • Documentation
  • Example folder with demo