diff --git a/data_structures/avltree.cpp b/data_structures/avltree.cpp index 19053224a..707841c0d 100644 --- a/data_structures/avltree.cpp +++ b/data_structures/avltree.cpp @@ -176,6 +176,10 @@ void levelOrder(node *root) { } } +/** + * @brief Main function + * @returns 0 on exit + */ int main() { // Testing AVL Tree node *root = nullptr;