Dada una lista enlazada individualmente, escriba una función para intercambiar elementos por pares. Por ejemplo, si la lista enlazada es 1->2->3->4->5->6->7 entonces la función debería cambiarla a 2->1->4->3->6->5 ->7, y si la lista enlazada es 1->2->3->4->5->6 entonces la función debería cambiarla a 2->1->4->3->6->5
Este problema ha sido discutido aquí . La solución proporcionada allí intercambia datos de Nodes. Si los datos contienen muchos campos, habrá muchas operaciones de intercambio. Así que cambiar enlaces es una mejor idea en general. La siguiente es la implementación que cambia los enlaces en lugar de intercambiar datos.
Javascript
<script> // Javascript program to swap elements // of linked list by changing links var head; class Node { constructor(val) { this.data = val; this.next = null; } } /* Function to pairwise swap elements of a linked list */ function pairWiseSwap(node) { // If linked list is empty or there // is only one node in list if (node == null || node.next == null) { return node; } // Initialize previous and current // pointers var prev = node; var curr = node.next; // Change head before proceeding node = curr; // Traverse the list while (true) { var next = curr.next; // Change next of current as // previous node curr.next = prev; // If next NULL or next is the // last node if (next == null || next.next == null) { prev.next = next; break; } // Change next of previous to next // next prev.next = next.next; // Update previous and curr prev = next; curr = prev.next; } return node; } /* Function to print nodes in a given linked list */ function printList(node) { while (node != null) { document.write(node.data + " "); node = node.next; } } // Driver code /* The constructed linked list is: 1->2->3->4->5->6->7 */ head = new Node(1); head.next = new Node(2); head.next.next = new Node(3); head.next.next.next = new Node(4); head.next.next.next.next = new Node(5); head.next.next.next.next.next = new Node(6); head.next.next.next.next.next.next = new Node(7); document.write( "Linked list before calling pairwiseSwap() "); printList(head); var st = pairWiseSwap(head); document.write("<br/>"); document.write( "Linked list after calling pairwiseSwap() "); printList(st); document.write(""); // This code is contributed by aashish1995 </script>
Producción:
Linked list before calling pairWiseSwap() 1 2 3 4 5 6 7 Linked list after calling pairWiseSwap() 2 1 4 3 6 5 7
Complejidad de tiempo: La complejidad de tiempo del programa anterior es O(n) donde n es el número de Nodes en una lista enlazada dada. El bucle while realiza un recorrido de la lista enlazada dada.
Espacio Auxiliar : O(1)
A continuación se muestra la implementación recursiva del mismo enfoque. Cambiamos los dos primeros Nodes y recurrimos para la lista restante. Gracias a geek y omer salem por sugerir este método.
Javascript
<script> // Javascript program to swap elements of // linked list by changing links var head; class Node { constructor(val) { this.data = val; this.next = null; } } /* Function to pairwise swap elements of a linked It returns head of the modified list, so return value of this node must be assigned */ function pairWiseSwap(node) { // Base Case: The list is empty or has // only one node if (node == null || node.next == null) { return node; } // Store head of list after // two nodes var remaining = node.next.next; // Change head var newhead = node.next; // Change next of second node node.next.next = node; // Recur for remaining list and // change next of head node.next = pairWiseSwap(remaining); // Return new head of modified list return newhead; } /* Function to print nodes in a given linked list */ function printList(node) { while (node != null) { document.write(node.data + " "); node = node.next; } } // Driver code /* The constructed linked list is: 1->2->3->4->5->6->7 */ head = new Node(1); head.next = new Node(2); head.next.next = new Node(3); head.next.next.next = new Node(4); head.next.next.next.next = new Node(5); head.next.next.next.next.next = new Node(6); head.next.next.next.next.next.next = new Node(7); document.write( "Linked list before calling pairwiseSwap() "); printList(head); head = pairWiseSwap(head); document.write("<br/>"); document.write( "Linked list after calling pairwiseSwap() "); printList(head); document.write(""); // This code is contributed by umadevi9616 </script>
Producción:
Linked list before calling pairWiseSwap() 1 2 3 4 5 6 7 Linked list after calling pairWiseSwap() 2 1 4 3 6 5 7
Complejidad de tiempo : O(n)
Espacio Auxiliar : O(n)
¡ Consulte el artículo completo sobre los elementos de intercambio por pares de una lista vinculada determinada cambiando los enlaces 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