[][src]Crate binary_search_tree

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