Skip to content
Snippets Groups Projects
Verified Commit 86d4582e authored by orestis.malaspin's avatar orestis.malaspin
Browse files

corrected +

parent b7a82223
No related branches found
No related tags found
No related merge requests found
......@@ -373,8 +373,8 @@ int depth(node *qt) {
noeud position(li, co, arbre)
d = profondeur(arbre);
tant_que (d >= 1)
index = 2 * ((li % 2^d) / 2^(d-1)) +
(col % 2^d) / 2^(d-1)
index = 2 * ((li % 2^d) / 2^(d-1))
+ (col % 2^d) / 2^(d-1)
arbre = arbre.enfant[index]
d -= 1
retourne arbre
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment