Buenas,quería chequear si esta solución es correcta.Gracias
bool completo(int h,AB a){
if(a==NULL && h==0)
return true;
else if((a==NULL && h!=0) || (a!=NULL && h==0))
return false;
else
return completo(h-1,a->izq) && completo(h-1,a->der);
}