A complete binary tree structure implemented in Rust.
Core binary tree structure has been completed on structure module.
The helper function to print the output of binary tree to dot graphviz notation also been completed.
All Binary Tree module been tested
This project add Binary Search Tree module separate from Binary Tree. There are similarities but design has some diversity to accommodate NIL value.
For quiz tonight you need to complete 4 functions inside the module:
- tree_search
- minimum
- maximum
- tree_successor
There are helper functions provided, you may use at your own discretion. Function been tested, the API mustn't be changed.