From d502f491e33df3df21fc4b31e25e82a399a73033 Mon Sep 17 00:00:00 2001 From: Orestis <orestis.malaspinas@pm.me> Date: Wed, 8 May 2024 11:08:17 +0200 Subject: [PATCH] maj slide suivantes.. --- slides/cours_21.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/slides/cours_21.md b/slides/cours_21.md index e99cb77..79801db 100644 --- a/slides/cours_21.md +++ b/slides/cours_21.md @@ -371,7 +371,7 @@ int depth(node *qt) { ```C noeud position(li, co, arbre) - d = profondeur(arbre) - 1; + d = profondeur(arbre) - 1 tant_que (d >= 1) index = 2 * ((li % 2^d) / 2^(d-1)) + (col % 2^d) / 2^(d-1) @@ -393,7 +393,7 @@ noeud position(li, co, arbre) ```C noeud position(li, co, arbre) - d = profondeur(arbre); + d = profondeur(arbre) - 1 tant_que (d >= 1) index = 2 * ((li % 2^d) / 2^(d-1)) + (col % 2^d) / 2^(d-1) -- GitLab