Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/CSRT-NTUA/AlgoPlus
Browse files Browse the repository at this point in the history
  • Loading branch information
spirosmaggioros committed Jan 22, 2024
2 parents 66cc9c0 + 3d5ff0a commit 3f327df
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 26 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
13 changes: 0 additions & 13 deletions tutorial/bst.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,19 +36,6 @@ b.remove(4);
//removes the element 4 from the tree.
```

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

bst<int> b;
b.insert(10);
b.insert(5);
b.insert(4);
b.insert(13);
b.remove(4);
//removes the element 4 from the tree.
```

### **search**:
```cpp
#include <algoplus/bst>
Expand Down

0 comments on commit 3f327df

Please sign in to comment.