给出两个 非空 的链表用来表示两个非负的整数。其中,它们各自的位数是按照 逆序 的方式存储的,而且它们的每一个节点只能存储 一位 数字。若是,咱们将这两个数相加起来,则会返回一个新的链表来表示它们的和。java
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.node
您能够假设除了数字 0 以外,这两个数都不会以 0 开头。python
You may assume the two numbers do not contain any leading zero, except the number 0 itself.git
示例:bash
输入:(2 -> 4 -> 3) + (5 -> 6 -> 4)
输出:7 -> 0 -> 8
缘由:342 + 465 = 807
复制代码
将两个链表遍历将相同位置节点值累加,其和过十进一,新链表相对位置节点值取其和的个位数值。须要考虑到两个链表长度不一样时遍历方式、链表遍历完成时最后一位是否须要进一位。spa
class Solution {
public ListNode addTwoNumbers(ListNode l1, ListNode l2) {
ListNode head = new ListNode(0);//虚拟头节点
ListNode cur = head;//指针
int carry = 0;//进位值
while (l1 != null || l2 != null) {//两个链表均为空时中止遍历
int x = (l1 != null) ? l1.val : 0;//x为l1的值,若是节点为空,值为0
int y = (l2 != null) ? l2.val : 0;//y为l2的值,若是节点为空,值为0
int sum = carry + x + y;//sum为两节点值之和
carry = sum / 10;//得进位值(1)
cur.next = new ListNode(sum % 10);//sum%10 得余数即 个位数的值
cur = cur.next;//刷新指针
if (l1 != null) l1 = l1.next;//l1节点不为空继续刷新下一个节点
if (l2 != null) l2 = l2.next;//l2节点不为空继续刷新下一个节点
}
if (carry > 0) {//若是仍然须要进 1 ,则直接新建一个节点
cur.next = new ListNode(carry);
}
return head.next;
}
}
复制代码
class Solution:
def addTwoNumbers(self, l1: ListNode, l2: ListNode) -> ListNode:
head = ListNode(0)
cur = head
sum = 0
while l1 or l2:
if l1:#l1不为空
sum += l1.val#累计两节点值的和
l1 = l1.next#刷新节点
if l2:
sum += l2.val#累计两节点值的和
l2 = l2.next#刷新节点
cur.next = ListNode(sum % 10)//刷新新链表
cur = cur.next
sum = sum // 10
if sum != 0:
cur.next = ListNode(sum)
return head.next
复制代码
欢迎关注公.众号一块儿刷题: 爱写Bug指针