A Binary Tree Visualizer implemented purely in C - A combination of Data Structures & Computer Graphics.
Features:
- Displays a customized tree. (Will be using the graphics.h header file in C.)
- Displays Traversals:
• In-Order Traversal (LNR: Left-Node-Right)
• Pre-Order Traversal (NLR: Node-Left-Right)
• Post-Order Traversal (LRN: Left-Right-Node)