memory-based trees

Jake_9876
Avl.h

#ifndef AVL_H #define AVL_H class Avl { public: Avl(); virtual ~Avl(); protected: private: }; #endif // AVL_H