test.cpp 294 B

1234567891011121314151617
  1. // Driver program to test above functions
  2. #include "AVLCommands.h"
  3. int main()
  4. {
  5. AVLCommands avl;
  6. avl.Insert(3);
  7. avl.Insert(50);
  8. avl.Insert(1);
  9. avl.Insert(15);
  10. avl.Insert(2);
  11. avl.Insert(5);
  12. avl.Insert(20);
  13. avl.Insert(50);
  14. avl.Delete(15);
  15. return 0;
  16. }