We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1928313 + 4fb8ca4 commit dcd353dCopy full SHA for dcd353d
1 file changed
content/TDs/S2/06_binaryTree.md
@@ -329,11 +329,8 @@ struct BinaryTree {
329
void insert(int value);
330
bool remove(int value);
331
void clear();
332
- bool contains(int value) const;
333
size_t height() const;
334
};
335
-
336
-bool contains(std::unique_ptr<SmartNode>& node, int value);
337
```
338
339
1. Créer un fichier `binaryTree.cpp` et implémenter les méthodes de la structure `BinaryTree`.
0 commit comments