hola quería saber si este código esta bien, me cuesta ver como se va enganchando.
lista menores (ABB t, int K) {
lista res;
if (t==NULL)
res=NULL;
else {
lista auxizq= menores (t->izq,k);
if (t->dato>=k)
res=auxizq;
else {
lista auxder= menores (t->der,k);
lista nodoelem = new nodo;
nodoelem->elem= t->dato;
nodoelem->sig= auxizq;
concat(auxder, nodoelem);
res=auxder;
}
}
return res;
}