1 2 3 4 5 6 7 8
/// A classic binary search tree without automatic balancing. pub mod binary_search_tree; /// Self-balancing AVL tree (strict height-balanced BST). pub mod avl_tree; /// Self-balancing Red-Black tree (color-based balanced BST). pub mod red_black_tree;