Dada una lista de caracteres enlazados individualmente, escriba una función que devuelva verdadero si la lista dada es un palíndromo, de lo contrario, falso.
MÉTODO 1 (Invirtiendo la lista):
Este método toma O(n) tiempo y O(1) espacio extra.
1) Obtenga el medio de la lista enlazada.
2) Invierta la segunda mitad de la lista enlazada.
3) Compruebe si la primera mitad y la segunda mitad son idénticas.
4) Construya la lista enlazada original invirtiendo la segunda mitad nuevamente y vinculándola nuevamente a la primera mitad
Para dividir la lista en dos mitades, se usa el método 2 de esta publicación.
Cuando varios Nodes son pares, la primera y la segunda mitad contienen exactamente la mitad de los Nodes. Lo desafiante de este método es manejar el caso cuando el número de Nodes es impar. No queremos que el Node medio forme parte de las listas, ya que vamos a compararlos por igualdad. Para casos extraños, usamos una variable separada ‘Node medio’.
C
// C++ program to check if a linked list // is palindrome #include <stdbool.h> #include <stdio.h> #include <stdlib.h> // Link list node struct Node { char data; struct Node* next; }; void reverse(struct Node**); bool compareLists(struct Node*, struct Node*); // Function to check if given linked // list is palindrome or not bool isPalindrome(struct Node* head) { struct Node *slow_ptr = head, *fast_ptr = head; struct Node *second_half, *prev_of_slow_ptr = head; // To handle odd size list struct Node* midnode = NULL; // Initialize result bool res = true; if (head != NULL && head->next != NULL) { // Get the middle of the list. // Move slow_ptr by 1 and // fast_ptrr by 2, slow_ptr // will have the middle node while (fast_ptr != NULL && fast_ptr->next != NULL) { fast_ptr = fast_ptr->next->next; // We need previous of the slow_ptr for // linked lists with odd elements prev_of_slow_ptr = slow_ptr; slow_ptr = slow_ptr->next; } /* fast_ptr would become NULL when there are even elements in list. And not NULL for odd elements. We need to skip the middle node for odd case and store it somewhere so that we can restore the original list*/ if (fast_ptr != NULL) { midnode = slow_ptr; slow_ptr = slow_ptr->next; } // Now reverse the second half and // compare it with first half second_half = slow_ptr; // NULL terminate first half prev_of_slow_ptr->next = NULL; // Reverse the second half reverse(&second_half); // Compare res = compareLists(head, second_half); // Construct the original list back // Reverse the second half again reverse(&second_half); // If there was a mid node (odd size // case) which was not part of either // first half or second half. if (midnode != NULL) { prev_of_slow_ptr->next = midnode; midnode->next = second_half; } else prev_of_slow_ptr->next = second_half; } return res; } // Function to reverse the linked list // Note that this function may change // the head void reverse(struct Node** head_ref) { struct Node* prev = NULL; struct Node* current = *head_ref; struct Node* next; while (current != NULL) { next = current->next; current->next = prev; prev = current; current = next; } *head_ref = prev; } // Function to check if two input // lists have same data bool compareLists(struct Node* head1, struct Node* head2) { struct Node* temp1 = head1; struct Node* temp2 = head2; while (temp1 && temp2) { if (temp1->data == temp2->data) { temp1 = temp1->next; temp2 = temp2->next; } else return 0; } // Both are empty return 1 if (temp1 == NULL && temp2 == NULL) return 1; // Will reach here when one is NULL // and other is not return 0; } // Push a node to linked list. // Note that this function // changes the head void push(struct Node** head_ref, char new_data) { // allocate node struct Node* new_node = (struct Node*)malloc(sizeof(struct 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; } // A utility function to print a // given linked list void printList(struct Node* ptr) { while (ptr != NULL) { printf("%c->", ptr->data); ptr = ptr->next; } printf("NULL"); } // Driver code int main() { // Start with the empty list struct Node* head = NULL; char str[] = "abacaba"; int i; for (i = 0; str[i] != ''; i++) { push(&head, str[i]); printList(head); isPalindrome(head) ? printf("Is Palindrome") : printf("Not Palindrome"); } return 0; }
Producción:
a->NULL Is Palindrome b->a->NULL Not Palindrome a->b->a->NULL Is Palindrome c->a->b->a->NULL Not Palindrome a->c->a->b->a->NULL Not Palindrome b->a->c->a->b->a->NULL Not Palindrome a->b->a->c->a->b->a->NULL Is Palindrome
Complejidad temporal: O(n)
Espacio auxiliar: O(1)
MÉTODO 2 (Uso de recursividad):
Use dos punteros a la izquierda y a la derecha. Muévase hacia la derecha y hacia la izquierda usando la recursividad y verifique el seguimiento en cada llamada recursiva.
1) La sublista es un palíndromo.
2) Los valores a la izquierda y a la derecha actuales coinciden.
Si las dos condiciones anteriores son verdaderas, devuelva verdadero.
La idea es usar la pila de llamadas de función como un contenedor. Atraviesa recursivamente hasta el final de la lista. Cuando regresemos del último NULL, estaremos en el último Node. El último Node debe compararse con el primer Node de la lista.
Para acceder al primer Node de la lista, necesitamos que el encabezado de la lista esté disponible en la última llamada de recursividad. Por lo tanto, pasamos de cabeza también a la función recursiva. Si ambos coinciden, necesitamos comparar (2, n-2) Nodes. Nuevamente, cuando la recursividad vuelve al (n-2) Node, necesitamos una referencia al segundo Node desde la cabeza. Avanzamos el puntero de cabecera en la llamada anterior, para referirnos al siguiente Node de la lista.
Sin embargo, el truco está en identificar un doble puntero. Pasar un solo puntero es tan bueno como pasar por valor, y pasaremos el mismo puntero una y otra vez. Necesitamos pasar la dirección del puntero principal para reflejar los cambios en las llamadas recursivas principales.
Gracias a Sharad Chandra por sugerir este enfoque.
C
// Recursive program to check if a // given linked list is palindrome #include <stdbool.h> #include <stdio.h> #include <stdlib.h> // Link list node struct node { char data; struct node* next; }; // Initial parameters to this // function are &head and head bool isPalindromeUtil(struct node** left, struct node* right) { // Stop recursion when right // becomes NULL if (right == NULL) return true; // If sub-list is not palindrome then // no need to check for current left // and right, return false bool isp = isPalindromeUtil(left, right->next); if (isp == false) return false; // Check values at current left and right bool isp1 = (right->data == (*left)->data); // Move left to next node *left = (*left)->next; return isp1; } // A wrapper over isPalindromeUtil() bool isPalindrome(struct node* head) { isPalindromeUtil(&head, head); } // Push a node to linked list. // Note that this function changes // the head void push(struct node** head_ref, char new_data) { // Allocate node struct node* new_node = (struct node*)malloc(sizeof(struct 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; } // A utility function to print a // given linked list void printList(struct node* ptr) { while (ptr != NULL) { printf("%c->", ptr->data); ptr = ptr->next; } printf("NULL\n"); } // Driver code int main() { // Start with the empty list struct node* head = NULL; char str[] = "abacaba"; int i; for (i = 0; str[i] != '\0'; i++) { push(&head, str[i]); printList(head); isPalindrome(head) ? printf("Is Palindrome\n\n") : printf("Not Palindrome\n\n"); } return 0; }
Producción:
a->NULL Not Palindrome b->a->NULL Not Palindrome a->b->a->NULL Is Palindrome c->a->b->a->NULL Not Palindrome a->c->a->b->a->NULL Not Palindrome b->a->c->a->b->a->NULL Not Palindrome a->b->a->c->a->b->a->NULL Is Palindrome
Complejidad de tiempo: O(n)
Espacio auxiliar: O(n) si se considera el tamaño de la pila de llamadas de funciones; de lo contrario, O(1).
¡ Consulte el artículo completo sobre Función para verificar si una lista enlazada individualmente es palíndromo 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