2Add Two Numbers

Posted 奇小东

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2Add Two Numbers相关的知识,希望对你有一定的参考价值。

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.

Input: (2 -> 4 -> 3) + (5 -> 6 -> 4)
Output: 7 -> 0 -> 8

 

python代码段

# Definition for singly-linked list.
# class ListNode(object):
# def __init__(self, x):
# self.val = x
# self.next = None


class Solution(object):
    def addTwoNumbers(self, l1, l2):
        """
        :type l1: ListNode
        :type l2: ListNode
        :rtype: ListNode
        """

        tag = 0
        if l1.val+l2.val>9:
            l3 = ListNode((l1.val+l2.val)%10)
            tag = 1
        else:
            l3 = ListNode(l1.val+l2.val)
            tag = 0
        l3_copy = l3
        l1next = ListNode(0) if l1.next==None else l1.next
        l2next = ListNode(0) if l2.next==None else l2.next
        if l1.next==None and l2.next==None and tag ==1:
            l3_copy.next = ListNode(1)
        if not(l1.next==None and l2.next==None):
            while 1:
                if tag == 1:
                    if l1next.val+l2next.val+1>9:
                        l3_copy.next = ListNode((l1next.val+l2next.val+1)%10)
                        tag = 1
                    else:
                        l3_copy.next = ListNode(l1next.val+l2next.val+1)
                        tag = 0
                else:
                    if l1next.val+l2next.val>9:
                        l3_copy.next = ListNode((l1next.val+l2next.val)%10)
                        tag = 1
                    else:
                        l3_copy.next = ListNode(l1next.val+l2next.val)
                        tag = 0
                l3_copy = l3_copy.next        
                if l1next.next==None and l2next.next==None:
                    if tag == 1:
                        l3_copy.next = ListNode(1)
                    break;        
                l1next = ListNode(0) if l1next.next==None else l1next.next
                l2next = ListNode(0) if l2next.next==None else l2next.next   
        return l3   

 

这里需要说明一下leetcode给出的ListNode类型的操作方式:

idx = ListNode(3)
n = idx
n.next = ListNode(4)
n = n.next
n.next = ListNode(5)
n = n.next
return idx
# idx[3,4,5]

 

以上是关于2Add Two Numbers的主要内容,如果未能解决你的问题,请参考以下文章

Add Two Numbers

Add Two Numbers

2. Add Two Numbers

leetcode练习:2.Add Two Numbers

「LeetCode」0003-Add Two Numbers(Typescript)

LeetCodeAdd Two Numbers(两数相加)