mikel_binary_tree

Crates.iomikel_binary_tree
lib.rsmikel_binary_tree
version0.1.7
created_at2023-11-27 00:11:35.909018+00
updated_at2024-12-18 20:50:43.122317+00
descriptionSimple search binary tree implementation
homepagehttps://github.com/apesteguia/binary_tree.git
repositoryhttps://github.com/apesteguia/binary-tree
max_upload_size
id1049531
size14,811
Mikel (apesteguia)

documentation

README

Simple implementation of a binary tree.

Example

fn main() {
    let mut a = BinaryTree::new(1);
    a.insert(2);
    a.vec_insert([1,2,3]);
    a.delete(1);
    for i in a.into_iter() {
        println!("{}", *i);
    }
}
Commit count: 0

cargo fmt