Your task is to implement a database to store student records.
Each records consists of the students name and her enrollment number.
Retrieval of a single student data record identified by her enrollment number should have a complexity of
- You have decided that a binary tree is the ideal data structure for your task
- Implement the functions specified in src/tree.h:
- Create for each function a separate file in
src
, for examplessrc/search_student.c
- Hint: The functions are documented using Doxygen annotations
- Create for each function a separate file in
- A
Makefile
is already provided, thus, you only need to typemake
to compile your code - By default,
make
will compile your binary tree implementation and unit tests and run the unit tests - Your implementation must pass all unit tests
- To iterate is human, to recurse, divine!