adding two linked lists efficiently in C

前端 未结 2 1330
广开言路
广开言路 2021-02-09 09:17

I have two linked lists representing the digits of decimal numbers in order from most- to least-significant. for eg 4->7->9->6 and 5->7 The

相关标签:
2条回答
  • 2021-02-09 09:46

    This is how I would go about solving this:

    Step 1: Make a pass on both linked lists, find lengths

    say len(L1) = m and len(L2) = n

    Step 2: Find difference of lengths

    if ( m > n )
        d = m - n
    else if ( n > m )
        d = n - m
    else
        d = 0
    

    Step 3: Move a temporary pointer d ahead of the larger list

    Step 4: Now we have two linked lists to add whose lengths are same, so add them recursively, maintaining a carry.

    Step 5: ( Note: if ( d == 0 ) don't perform this step )

    After step 4, we've got partial output list, and now we have to put remaining of the larger list at the beginning of output list.

    if ( d > 0 )
        -Travel larger list till d positions recursively
        -Append sum = value_at_end + carry (update carry if sum >= 10) to output list at beginning
        -Repeat until difference is consumed
    

    Note: I'm solving the problem as its put before me, not by suggesting the change in underlying data structure.

    Time complexity:

    1. Making single passes on both the lists to find their lengths: O(m+n)
    2. Summing two linked lists of equal size (m - d and n) recursively: O(n), assuming m > n
    3. Appending remaining of larger list to output list: O(d)

    Total: O( (m+n) + (n) + (d) ) OR O(m+n)

    Space complexity:

    1. step 2 of time complexity: O(n), run time stack space
    2. step 3 of time complexity: O(d), run time stack space

    Total: O(n + d) OR O(n)

    0 讨论(0)
  • 2021-02-09 10:05

    Two passes, no stack:

    • Get the length of the two lists.

    • Create a solution list with one node. Initialize the value of this node to zero. This will hold the carry digit. Set a list pointer (call it the carry pointer) to the location of this node. Set a list pointer (call it the end pointer) to the location of this node.

    • Starting with the longer list, for each excess node, link a new node to the end pointer and assign it the value of the excess node. Set the end pointer to this new node. If the value is less than 9, set the carry pointer to the new node.

    • Now we're left with both list pointers having the same number of nodes in each.

    • While the lists are not empty...

      • Link a new node to the end pointer and advance the end pointer to this node.

      • Get the values from each list and advance each list pointer to the next node.

      • Add the two values together.

        1. If value is greater than nine, set the value to value mod 10, increment the value held in the carry pointer's node, move the carry pointer to the next node. If carry pointer's value is nine, set to zero and go to next node.

        2. If value is nine. Set it. Do nothing else.

        3. If value is less than nine. Set it. Set carry pointer to current node.

    • When you're done with both lists, check if the solution pointer's node value is zero. If it is, set the solution pointer to the next node, deleting the unneeded extra digit.

    0 讨论(0)
提交回复
热议问题