Programa Javascript para ordenar por inserción en una lista enlazada individualmente

Hemos discutido la ordenación por inserción para arreglos . En este artículo vamos a discutir la ordenación por inserción para la lista enlazada. 
A continuación se muestra un algoritmo de clasificación de inserción simple para una lista enlazada. 

1) Create an empty sorted (or result) list.
2) Traverse the given list, do following for every node.
......a) Insert current node in sorted way in sorted or result list.
3) Change head of given linked list to head of sorted (or result) list.

El paso principal es (2.a) que se ha cubierto en la publicación Inserción ordenada para la lista enlazada individualmente 
A continuación se muestra la implementación del algoritmo anterior:

Javascript

<script>
// Javascript program to sort link list
// using insertion sort
var head = null;
var sorted = null;
 
class node
{
    constructor(val)
    {
        this.val = val;
        this.next = null;
    }
}
      
function push(val)
{
    // Allocate node
    var newnode = new node(val);
         
    // Link the old list off the
    // new node
    newnode.next = head;
         
    // Move the head to point to
    // the new node
    head = newnode;
}
 
// Function to sort a singly linked list
// using insertion sort
function insertionSort(headref)
{
    // Initialize sorted linked list
    var sorted = null;
    var current = headref;
 
    // Traverse the given linked list
    // and insert every node to sorted
    while (current != null)
    {
        // Store next for next iteration
        var next = current.next;
             
        // Insert current in sorted
        // linked list
        sortedInsert(current);
 
        // Update current
        current = next;
    }
    // Update head_ref to point to
    // sorted linked list
    head = sorted;
}
 
/* Function to insert a new_node in a Linked List.
   Note that this function expects a pointer to
   head_ref as this can modify the head of the
   input linked list (similar to push()) */
function sortedInsert(newnode)
{
    // Special case for the head end
    if (sorted == null ||
        sorted.val >= newnode.val)
     {
         newnode.next = sorted;
         sorted = newnode;
     }
     else
     {
         var current = sorted;
 
         /* Locate the node before the point
            of insertion */
         while (current.next != null &&
                current.next.val < newnode.val)
         {
             current = current.next;
         }
         newnode.next = current.next;
         current.next = newnode;
     }
}
 
// Function to print linked list
function printlist(head)
{
    while (head != null)
    {
        document.write(head.val + " ");
        head = head.next;
    }
}
 
// Driver code
push(5);
push(20);
push(4);
push(3);
push(30);
document.write(
"Linked List before Sorting..<br/>");
printlist(head);
insertionSort(head);
document.write(
"<br/>LinkedList After sorting<br/>");
printlist(sorted);
// This code is contributed by aashish1995
</script>

Producción:

Linked List before sorting
30  3  4  20  5
Linked List after sorting
3  4  5  20  30

Complejidad de tiempo: O(n 2 ), en el peor de los casos, es posible que tengamos que atravesar todos los Nodes de la lista ordenada para insertar un Node, y hay «n» Nodes de este tipo.

Complejidad de espacio: O(1), no se requiere espacio adicional según el tamaño de la entrada, por lo que es constante.

¡ Consulte el artículo completo sobre la ordenación por inserción para la lista de enlaces únicos 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

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *