Programa Javascript para agregar dos números representados por listas vinculadas: conjunto 1

Dados dos números representados por dos listas, escribe una función que devuelva la lista de suma. La lista de suma es una representación de lista de la suma de dos números de entrada.

Ejemplo :

Input: 
List1: 5->6->3 // represents number 563 
List2: 8->4->2 // represents number 842 
Output: 
Resultant list: 1->4->0->5 // represents number 1405 
Explanation: 563 + 842 = 1405 Input: 
List1: 7->5->9->4->6 // represents number 75946
List2: 8->4 // represents number 84
Output: 
Resultant list: 7->6->0->3->0// represents number 76030
Explanation: 75946+84=76030

Enfoque : recorra ambas listas y seleccione Nodes uno por uno de ambas listas y agregue los valores. Si la suma es mayor que 10, haga llevar como 1 y reduzca la suma. Si una lista tiene más elementos que la otra, considere los valores restantes de esta lista como 0. 

Los pasos son: 

  1. Recorra las dos listas enlazadas de principio a fin
  2. Agregue los dos dígitos de cada una de las respectivas listas enlazadas.
  3. Si una de las listas ha llegado al final, tome 0 como su dígito.
  4. Continúe hasta el final de las listas.
  5. Si la suma de dos dígitos es mayor que 9, configure el acarreo como 1 y el dígito actual como suma % 10

A continuación se muestra la implementación de este enfoque. 

Javascript

<script>
// Javascript program to add two numbers
// represented by linked list
var head1, head2;
  
class Node 
{
    constructor(val) 
    {
        this.data = val;
        this.next = null;
    }
}
       
/* Adds contents of two linked lists 
   and return the head node of resultant 
   list */
function  addTwoLists(first, second) 
{
    // res is head node of the resultant 
    // list
    var res = null;
    var prev = null;
    var temp = null;
    var carry = 0, sum;
  
    // while both lists exist
    while (first != null || 
           second != null) 
    {
        // Calculate value of next digit in 
        // resultant list. The next digit is 
        // sum of following things
        // (i) Carry
        // (ii) Next digit of first list (if 
        // there is a next digit)
        // (ii) Next digit of second list (if 
        // there is a next digit)
        sum = carry + (first != null ? first.data : 0) +
              (second != null ? second.data : 0);
  
        // Update carry for next calculation
        carry = (sum >= 10) ? 1 : 0;
  
        // Update sum if it is greater than 10
        sum = sum % 10;
  
        // Create a new node with sum as data
        temp = new Node(sum);
  
        // If this is the first node then set
        // it as head of the resultant list
        if (res == null) 
        {
            res = temp;
        }
  
        // If this is not the first node then 
        // connect it to the rest.
        else 
        {
            prev.next = temp;
        }
  
        // Set prev for next insertion
        prev = temp;
  
        // Move first and second pointers to 
        // next nodes
        if (first != null) 
        {
            first = first.next;
        }
        if (second != null)  
        {
            second = second.next;
        }
    }
  
    if (carry > 0) 
    {
        temp.next = new Node(carry);
    }
  
    // return head of the resultant list
    return res;
}
  
/* Utility function to print a 
   linked list */
function  printList(head) 
{
    while (head != null) 
    {
        document.write(head.data + " ");
        head = head.next;
    }
    document.write("<br/>");
}
  
// Driver Code
// Creating first list
head1 = new Node(7);
head1.next = new Node(5);
head1.next.next = new Node(9);
head1.next.next.next = new Node(4);
head1.next.next.next.next = new Node(6);
document.write("First List is ");
printList(head1);
  
// Creating second list
head2 = new Node(8);
head2.next = new Node(4);
document.write("Second List is ");
printList(head2);
  
// Add the two lists and see the 
// result
rs = addTwoLists(head1, head2);
document.write("Resultant List is ");
printList(rs);
// This code is contributed by aashish1995 
</script>

Producción:

First List is 7 5 9 4 6 
Second List is 8 4 
Resultant list is 5 0 0 5 6 

Análisis de Complejidad: 

  • Complejidad de tiempo: O(m + n), donde m y n son números de Nodes en la primera y segunda lista respectivamente. 
    Las listas deben recorrerse una sola vez.
  • Complejidad espacial: O(m + n). 
    Se necesita una lista enlazada temporal para almacenar el número de salida

Artículo relacionado: Suma dos números representados por listas enlazadas | conjunto 2

Consulte el artículo completo sobre Agregar dos números representados por listas vinculadas | ¡ Establezca 1 para 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 *