simple-binary-tree 0.1.0

A simple binary tree view representation
Documentation
  • Coverage
  • 0%
    0 out of 11 items documented0 out of 6 items with examples
  • Size
  • Source code size: 5.78 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 487.06 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • Homepage
  • enosuity/binary-tree
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • enosuity

Binary Tree Crate

A simple binary tree implementation in Rust using smart pointers (Rc and RefCell). This crate provides basic functionalities to build, insert, and print elements of a binary tree.

Features

  • Insert elements into the binary tree.
  • Print the binary tree structure with indentation.

Getting Started

Prerequisites

  • Rust and Cargo installed on your system. You can get it from rustup.rs.

Installation

To use this crate, add it to your Cargo.toml:

[dependencies]
simple_binary_tree = "0.1.0"