From c05ef862012dfc331f270ce3ae174e787cc38bb6 Mon Sep 17 00:00:00 2001 From: Spiros Maggioros <51701672+spirosmaggioros@users.noreply.github.com> Date: Mon, 22 Jan 2024 20:45:02 +0200 Subject: [PATCH] Update avl.md --- tutorial/avl.md | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/tutorial/avl.md b/tutorial/avl.md index ed9e67a9..42296ae0 100644 --- a/tutorial/avl.md +++ b/tutorial/avl.md @@ -36,19 +36,6 @@ a.remove(4); //removes the element 4 from the tree. ``` -### **remove**: -```cpp -#include - -avl_tree a; -a.insert(10); -a.insert(5); -a.insert(4); -a.insert(13); -a.remove(4); -//removes the element 4 from the tree. -``` - ### **search**: ```cpp #include