allc / binary_search_tree

Binary search tree implementation in Rust

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

About

Binary search tree implementation in Rust

License:MIT License


Languages

Language:Rust 100.0%