binary_search_tree

Crates.iobinary_search_tree
lib.rsbinary_search_tree
version0.2.2
created_at2020-12-02 17:32:16.366412+00
updated_at2020-12-22 10:28:27.024468+00
descriptionBinary search tree implementation
homepagehttps://github.com/PrototypeRailGun/binary_search_tree
repositoryhttps://github.com/PrototypeRailGun/binary_search_tree
max_upload_size
id318958
size51,906
Egor Starovoitov (starovoid)

documentation

README

binary_search_tree

Description

A classic Binary Search Tree written in Rust.

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.

Commit count: 0

cargo fmt