본문 바로가기

00/algorithm

Add two numbers (in Python)

반응형

Problem


You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and return it as a linked list.


You may assume the two numbers do not contain any leading zero, except the number 0 itself.


Solution


Approach 1 : Elementary Math


Intuition


Keep track of the carry using a variable and simulate digits-by-digits sum starting from the head of list, which contains the least-significant digit.


Illustration of Adding two numbers


Algorithm


Just like how you would sum two numbers on a piece of paper, we begin by summing the least-significant digits, which is the head of l1 and l2. Since each digit is in the range of 0...9, summing two digits may "overflow". For example 5 + 7 = 12. In this case, we set the current digit to 2 and bring over the carry = 1 to the next iteration. carry must be either 0 or 1 because the largest possible sum of two digits (including the carry) is 9+9+1 = 19.


The pseudocode is as following:


1. Initialize current node to dummy head of the returning list.

2. Initialize carry to 0.

3. Initialize p and q to head of l1 and l2 respectively.

4. Loop through lists l1 and l2 until you reach both ends.

- Set x to node p's value. If p has reached the end of l1, set to 0.

- Set y to node q's value. If q has reached the end of l2, set to 0.

- Set sum = x + y + carry

- Update carry = sum / 10.

- Create a new node with the digit value of (sum mod 10) and set it to current node's next, then advance current node to next.

- Advance both p and q.

5. Check if carry = 1, if so append a new node with digit 1 to the returning list.

6. Return dummy head's next node.


Note that we use a dummy head to simplify the code. Without a dummy head, you would have to write extra conditional statements to initialize the head's value.


Take extra caution of the following cases :


Test case 

Explanation 

l1 = [0, 1]

l2 = [0, 1, 2] 

 When one list is longer than the other. 

l1 = []

l2 = [0, 1] 

 When one list is null, which means an empty list. 

l1 = [9, 9]

l2 = [1] 

 The sum could have an extra carry of one at the end, which is easy to forget. 


# Definition for singly-linked list.
# class ListNode:
#     def __init__(self, x):
#         self.val = x
#         self.next = None
 
def addTwoNumbers(self, l1, l2):
        
    dummy = cur = ListNode(0)
    carry = 0
 
    while l1 or l2 or carry :
 
        if l1 :
            carry += l1.val
            l1 = l1.next
        if l2 :
            carry += l2.val
            l2 = l2.next
        
        cur.next = ListNode(carry%10)
        cur = cur.next
        carry //= 10
 
    return dummy.next
cs


Complexity Analysis

⏳Time complexity : O(max(m, n)). Assume that m and n represents the length of l1 and l2 respectively, the algorithm above iterates at most max(m, n) times.

🏠Space complexity : O(max(m, n)). The length of the new list is at most max(m, n) + 1.



출처 : https://leetcode.com/problems/add-two-numbers



반응형