From 4fb8ca446e55a4cd2f4b394912cc316d89b0f2a5 Mon Sep 17 00:00:00 2001 From: Jules Fouchy Date: Wed, 30 Apr 2025 20:41:55 +0200 Subject: [PATCH] S2 TD6 --- content/TDs/S2/06_binaryTree.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/content/TDs/S2/06_binaryTree.md b/content/TDs/S2/06_binaryTree.md index 89976bf6..9ca6cf31 100644 --- a/content/TDs/S2/06_binaryTree.md +++ b/content/TDs/S2/06_binaryTree.md @@ -329,11 +329,8 @@ struct BinaryTree { void insert(int value); bool remove(int value); void clear(); - bool contains(int value) const; size_t height() const; }; - -bool contains(std::unique_ptr& node, int value); ``` 1. Créer un fichier `binaryTree.cpp` et implémenter les méthodes de la structure `BinaryTree`.