binary-tree 0.2.0

Collection of Binary Tree data structures and algorithms
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
extern crate binary_tree;

use binary_tree::count::CountTree;

fn main() {
    let ct: CountTree<_> = (0..0).collect();
    println!("{:?}", ct);

    let mut ct: CountTree<_> = (0..7).collect();
    ct.push_back(8);
    println!("{:#?}", ct);
}