This code is a simple implementation of binary tree data structures in C. Implementation has been created for study purposes, not for real usage. The binary tree is fully implemented, but not optimized. Datatype is implemented as void
for easy retype.
In main.c
is an example usage for this code. his function starts menu with options:
- Help menu
- Insert data
- Delete data
- Print sorted data
- Print graph of tree
- Reset iterator
- Get first item
- Get next item
- Print fast test
- Exit
These options show of usage of individual functions of implementation.
Compilation of this project can be done by make file.