Added avl height benchmark

This commit is contained in:
2025-05-06 19:02:00 +02:00
parent e45091b066
commit 93311c4ad5
12 changed files with 328 additions and 94 deletions
+1
View File
@@ -12,3 +12,4 @@ void traverseInOrder(Tree *root,std::vector<int> &vec);
Tree *rebuild(std::vector<int> *vec, int start, int end);
Tree *balance(Tree *root);
void deleteTree(Tree *root);
int getHeight(Tree *root, int height);