leetcode-2. 两数相加
Posted namedlxd
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode-2. 两数相加相关的知识,希望对你有一定的参考价值。
给定两个非空链表来表示两个非负整数。位数按照逆序方式存储,它们的每个节点只存储单个数字。将两数相加返回一个新的链表。
你可以假设除了数字 0 之外,这两个数字都不会以零开头。
示例:
输入:(2 -> 4 -> 3) + (5 -> 6 -> 4) 输出:7 -> 0 -> 8 原因:342 + 465 = 807
思路:模拟题依次遍历相加即可,注意最后的进位。
代码:
# Definition for singly-linked list. # class ListNode: # def __init__(self, x): # self.val = x # self.next = None class Solution: def addTwoNumbers(self, l1, l2): """ :type l1: ListNode :type l2: ListNode :rtype: ListNode """ res = ListNode(0) tr = res plus = 0 while l1 is not None or l2 is not None: l1v = 0 if l1 is None else l1.val l2v = 0 if l2 is None else l2.val temp = l1v + l2v + plus plus = temp // 10 tr.next = ListNode(temp % 10) tr = tr.next l1 = None if l1 is None else l1.next l2 = None if l2 is None else l2.next if plus != 0: tr.next = ListNode(plus) return res.next
以上是关于leetcode-2. 两数相加的主要内容,如果未能解决你的问题,请参考以下文章