binary_search_tree 0.2.2

Binary search tree implementation
Documentation

binary_search_tree

Description

In this implementation, each node of the binary tree contains only one valuable value. To order the nodes, the elements must implement the Ord trait.

Usage

As a library

extern crate binary_search_tree;

use binary_search_tree::BinarySearchTree;

Features & capabilities

The BinarySearchTree struct provides the following methods:

If you have any comments or suggestions, or you suddenly found an error, please write to prototyperailgun@gmail.com.