if right[x] != NIL
then return TREE-MINIMUM(right[x])
y<-p[x]
while y!= NIL and x = right[y]
do x<-y
y<-p[y]
return y
Je sais ce que « si droit [x] = NIL puis retour arbre min! » Signifie et je l'ai traduit à:
if(p->RChild) return fMinValue(p->RChild);//returns the min value of the sub-tree starting at the right child node of p
Le reste, je vais avoir du mal à comprendre.













