Escriba una función que tome una lista ordenada en orden no decreciente y elimine cualquier Node duplicado de la lista. La lista solo debe recorrerse una vez.
Por ejemplo, si la lista vinculada es 11->11->11->21->43->43->60, removeDuplicates() debería convertir la lista a 11->21->43->60.
Algoritmo:
recorrer la lista desde el Node principal (o inicial). Mientras atraviesa, compare cada Node con su siguiente Node. Si los datos del siguiente Node son los mismos que los del Node actual, elimine el siguiente Node. Antes de eliminar un Node, debemos almacenar el siguiente puntero del Node
Implementación:
las funciones que no sean removeDuplicates() son solo para crear una lista vinculada y probar removeDuplicates().
C++
// C++ Program to remove duplicates // from a sorted linked list #include <bits/stdc++.h> using namespace std; // Link list node class Node { public: int data; Node* next; }; // The function removes duplicates // from a sorted list void removeDuplicates(Node* head) { // Pointer to traverse the linked list Node* current = head; // Pointer to store the next pointer // of a node to be deleted Node* next_next; // Do nothing if the list is empty if (current == NULL) return; // Traverse the list till last node while (current->next != NULL) { // Compare current node with next node if (current->data == current->next->data) { // The sequence of steps is important next_next = current->next->next; free(current->next); current->next = next_next; } // This is tricky: only advance if no deletion else { current = current->next; } } } // UTILITY FUNCTIONS // Function to insert a node at the // beginning of the linked list void push(Node** head_ref, int new_data) { // Allocate node Node* new_node = new Node(); // Put in the data new_node->data = new_data; // Link the old list off the // new node new_node->next = (*head_ref); // Move the head to point to the // new node (*head_ref) = new_node; } // Function to print nodes in a // given linked list void printList(Node *node) { while (node != NULL) { cout << " " << node->data; node = node->next; } } // Driver code int main() { // Start with the empty list Node* head = NULL; /* Let us create a sorted linked list to test the functions. Created linked list will be 11->11->11->13->13->20 */ push(&head, 20); push(&head, 13); push(&head, 13); push(&head, 11); push(&head, 11); push(&head, 11); cout << "Linked list before duplicate removal "; printList(head); // Remove duplicates from linked list removeDuplicates(head); cout << "Linked list after duplicate removal "; printList(head); return 0; } // This code is contributed by rathbhupendra
Producción:
Linked list before duplicate removal 11 11 11 13 13 20 Linked list after duplicate removal 11 13 20
Complejidad de tiempo: O(n) donde n es el número de Nodes en la lista enlazada dada.
Espacio Auxiliar: O(1)
Enfoque recursivo:
C++
// C++ Program to remove duplicates // from a sorted linked list #include <bits/stdc++.h> using namespace std; // Link list node class Node { public: int data; Node* next; }; // The function removes duplicates // from a sorted list void removeDuplicates(Node* head) { // Pointer to store the pointer // of a node to be deleted*/ Node* to_free; // Do nothing if the list is empty if (head == NULL) return; // Traverse the list till last node if (head->next != NULL) { // Compare head node with next node if (head->data == head->next->data) { /* The sequence of steps is important. to_free pointer stores the next of head pointer which is to be deleted.*/ to_free = head->next; head->next = head->next->next; free(to_free); removeDuplicates(head); } /* This is tricky: only advance if no deletion */ else { removeDuplicates(head->next); } } } // UTILITY FUNCTIONS // Function to insert a node at the // beginning of the linked list void push(Node** head_ref, int new_data) { // Allocate node Node* new_node = new Node(); // Put in the data new_node->data = new_data; // Link the old list off the // new node new_node->next = (*head_ref); // Move the head to point to // the new node (*head_ref) = new_node; } /* Function to print nodes in a given linked list */ void printList(Node *node) { while (node != NULL) { cout << " " << node->data; node = node->next; } } // Driver code int main() { // Start with the empty list Node* head = NULL; /* Let us create a sorted linked list to test the functions Created linked list will be 11->11->11->13->13->20 */ push(&head, 20); push(&head, 13); push(&head, 13); push(&head, 11); push(&head, 11); push(&head, 11); cout << "Linked list before duplicate removal "; printList(head); // Remove duplicates from linked list removeDuplicates(head); cout << "Linked list after duplicate removal "; printList(head); return 0; } // This code is contributed by Ashita Gupta
Producción:
Linked list before duplicate removal 11 11 11 13 13 20 Linked list after duplicate removal 11 13 20
Complejidad de tiempo: O(n), donde n es el número de Nodes en la lista enlazada dada.
Espacio auxiliar: O(n), debido a la pila recursiva donde n es el número de Nodes en la lista enlazada dada.
Otro enfoque: cree un puntero que apunte hacia la primera aparición de cada elemento y otro puntero temporal que iterará a cada elemento y cuando el valor del puntero anterior no sea igual al puntero temporal, estableceremos el puntero del anterior puntero a la primera aparición de otro Node.
A continuación se muestra la implementación del enfoque anterior:
C++
// C++ program to remove duplicates // from a sorted linked list #include <bits/stdc++.h> using namespace std; // Linked list Node struct Node { int data; Node *next; Node(int d) { data = d; next = NULL; } }; // Function to remove duplicates // from the given linked list Node *removeDuplicates(Node *head) { // Two references to head temp will // iterate to the whole Linked List // prev will point towards the first // occurrence of every element Node *temp = head,*prev=head; // Traverse list till the last node while (temp != NULL) { // Compare values of both pointers if(temp->data != prev->data) { /* if the value of prev is not equal to the value of temp that means there are no more occurrences of the prev data-> So we can set the next of prev to the temp node->*/ prev->next = temp; prev = temp; } // Set the temp to the next node temp = temp->next; } /* This is the edge case if there are more than one occurrences of the last element */ if(prev != temp) { prev->next = NULL; } return head; } Node *push(Node *head, int new_data) { /* 1 & 2: Allocate the Node & Put in the data*/ Node *new_node = new Node(new_data); /* 3. Make next of new Node as head */ new_node->next = head; /* 4. Move the head to point to new Node */ head = new_node; return head; } // Function to print linked list void printList(Node *head) { Node *temp = head; while (temp != NULL) { cout << temp->data << " "; temp = temp->next; } cout << endl; } // Driver code int main() { Node *llist = NULL; llist = push(llist,20); llist = push(llist,13); llist = push(llist,13); llist = push(llist,11); llist = push(llist,11); llist = push(llist,11); cout << ("List before removal of duplicates"); printList(llist); cout << ("List after removal of elements"); llist = removeDuplicates(llist); printList(llist); } // This code is contributed by mohit kumar 29.
Producción:
List before removal of duplicates 11 11 11 13 13 20 List after removal of elements 11 13 20
Complejidad de tiempo: O(n) donde n es el número de Nodes en la lista enlazada dada.
Espacio auxiliar: O(1), no se requiere espacio adicional, por lo que es una constante.
Otro enfoque: uso de mapas
La idea es empujar todos los valores en un mapa e imprimir sus claves.
A continuación se muestra la implementación del enfoque anterior:
C++
// C++ program for the above approach #include <bits/stdc++.h> using namespace std; // Link list node struct Node { int data; Node* next; Node() { data = 0; next = NULL; } }; /* Function to insert a node at the beginning of the linked list */ void push(Node** head_ref, int new_data) { // Allocate node Node* new_node = new Node(); // Put in the data new_node->data = new_data; // Link the old list off // the new node new_node->next = (*head_ref); // Move the head to point // to the new node (*head_ref) = new_node; } /* Function to print nodes in a given linked list */ void printList(Node* node) { while (node != NULL) { cout << node->data << " "; node = node->next; } } // Function to remove duplicates void removeDuplicates(Node* head) { unordered_map<int, bool> track; Node* temp = head; while (temp) { if (track.find(temp->data) == track.end()) { cout << temp->data << " "; } track[temp->data] = true; temp = temp->next; } } // Driver Code int main() { Node* head = NULL; /* Created linked list will be 11->11->11->13->13->20 */ push(&head, 20); push(&head, 13); push(&head, 13); push(&head, 11); push(&head, 11); push(&head, 11); cout << "Linked list before duplicate removal "; printList(head); cout << "Linked list after duplicate removal "; removeDuplicates(head); return 0; } // This code is contributed by yashbeersingh42
Producción:
Linked list before duplicate removal 11 11 11 13 13 20 Linked list after duplicate removal 11 13 20
Complejidad temporal: O(n) donde n es el número de Nodes.
Espacio Auxiliar: O(n) donde n es el número de Nodes.
Consulte el artículo completo sobre Eliminar duplicados de una lista ordenada ordenada para obtener más detalles.
Publicación traducida automáticamente
Artículo escrito por GeeksforGeeks-1 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA