PUERTA | PUERTA CS 1997 | Pregunta 62
Considere el siguiente fragmento de código ‘C’ que elimina los duplicados de una lista ordenada de enteros. Node *remove-duplicates(Node *head, int *j) { Node *t1, *t2; *j=0; t1 = head; if (t1! = NULL) t2 = t1 →next; else return head; *j = 1; if(t2 == NULL) return head; while t2 != NULL) { if … Continue reading «PUERTA | PUERTA CS 1997 | Pregunta 62»