rust_black_tree 0.1.5

Please don't use this in something serious lol
Documentation
pub mod avltree;
pub mod node;
pub mod prettynodeprinter;
pub mod rbtree;
pub mod tree;
pub mod unbalancetree;

pub fn test() {
    //let mut tree = tree::RBTree::new();
    //for x in 0..10 {
    //tree.insert(x);
    //println!("{}", tree.to_string());
    //}
}