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
Știu ce „dacă dreapta [x] = NIL apoi întoarce-copac min!“ Înseamnă și l-am tradus:
if(p->RChild) return fMinValue(p->RChild);//returns the min value of the sub-tree starting at the right child node of p
Restul Am probleme de înțelegere.













