| Crates.io | binary_search_tree |
| lib.rs | binary_search_tree |
| version | 0.2.2 |
| created_at | 2020-12-02 17:32:16.366412+00 |
| updated_at | 2020-12-22 10:28:27.024468+00 |
| description | Binary search tree implementation |
| homepage | https://github.com/PrototypeRailGun/binary_search_tree |
| repository | https://github.com/PrototypeRailGun/binary_search_tree |
| max_upload_size | |
| id | 318958 |
| size | 51,906 |
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.
As a library
extern crate binary_search_tree;
use binary_search_tree::BinarySearchTree;
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.