summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/main.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs
index 884b367..9cf9492 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -8,6 +8,8 @@ trait Ord {
fn cmp(&self, other: &Self) -> Ordering;
}
+// TODO: la structure AVLNode est extrait comme un inductif à un cas
+// au lieu d'être extrait comme une structure
struct AVLNode<T> {
value: T,
left: AVLTree<T>,