Skip to content

Commit

Permalink
Update avl.md
Browse files Browse the repository at this point in the history
  • Loading branch information
spirosmaggioros authored Jan 22, 2024
1 parent 432ec19 commit c05ef86
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions tutorial/avl.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,19 +36,6 @@ a.remove(4);
//removes the element 4 from the tree.
```

### **remove**:
```cpp
#include <algoplus/avl>

avl_tree<int> 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 <algoplus/avl>
Expand Down

0 comments on commit c05ef86

Please sign in to comment.