To test your code effectively, you should split any code you want to be able to test into a separate .h and .cpp files. For example, if you put your tree code into AVL.h and AVL.cpp, the top of your ...
A college assignment which uses the AVL Tree Data structure to store student records based on roll number/marks as the key to speed up student look up due to O(logn) time complexity of AVL Tree ...