Crate binary_search_tree

Source
Expand description

This module contains an implementation of a classic binary search tree with a large set of methods, including view iterators.

Structsยง

BinarySearchTree
In this crate, binary search trees store only one valuable value, which is also used as a key, so all elements must have the Ord trait implementation.
InorderTraversal
LevelOrderTraversal
PostorderTraversal
PreorderTraversal
ReverseOrderTraversal