Module unsafe_bst::binary_tree

source ·
Expand description

Module that houses all Binary Tree Operations

Structs§

  • A Binary Tree has a root node, and possibly a left and right subtree. Option is used to allow the possibility that a left/right subtree is not defined. Box is used to control recursive errors: i.e. there is only a Box when there is a subtree