nicholas22 Posted July 1, 2020 at 06:26 AM Share Posted July 1, 2020 at 06:26 AM TLDE* inverte(TLDE* l) { TLDE *p = l; TLDE *aux=NULL; p=l->prox; l->prox=NULL; while(p!=NULL) { aux=p->prox; p->prox=l; l=p; p=aux; } return l; } Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.