You are on page 1of 1

int altura(nodo x){

if(x==null)
return 0;
return 1+max(altura(x.izq),x.der(x.der));
}-

You might also like