Question

给出两个 非空 的链表用来表示两个非负的整数。其中,它们各自的位数是按照 逆序 的方式存储的,并且它们的每个节点只能存储 一位 数字。

如果,我们将这两个数相加起来,则会返回一个新的链表来表示它们的和。

您可以假设除了数字 0 之外,这两个数都不会以 0 开头。

Example

输入:(2 -> 4 -> 3) + (5 -> 6 -> 4)
输出:7 -> 0 -> 8
原因:342 + 465 = 807


idea

用两个指针遍历链表,计算两个移动指针的和。当遍历其中一个链表为空时,将其中一个加数赋值为0,并将指针指向null。

当两个链表遍历结束后,注意最后一次计算是否有进位,并根据实际需要添加新节点。

Code

/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode(int x) { val = x; }
* }
*/
class Solution {
public ListNode addTwoNumbers(ListNode l1, ListNode l2) {
ListNode dummy = new ListNode(0);
ListNode cur = dummy;
int carry = 0;
while(l1 != null || l2 != null){
int x = l1 != null ? l1.val : 0;
int y = l2 != null ? l2.val : 0;
ListNode newNode = new ListNode((x + y + carry) % 10);
carry = (x + y + carry) / 10;
cur.next = newNode;
cur = cur.next;
l1 = l1 == null ? null : l1.next;
l2 = l2 == null ? null : l2.next;
}
if(carry == 1){
ListNode newNode = new ListNode(1);
cur.next = newNode;
}
return dummy.next;
}
}
avatar
AT0M
正确地做事 做正确的事
Follow Me
Announcement
Talk is cheap, Show me the code.