内容描述
给出两个非空链表,表示两个非负整数。数字以相反的顺序存储,每个节点包含一个数字。将这两个数字相加,并将其作为链表返回。
你可以假设这两个数字不包含任何前导零,除了数字0本身。
例子:
输入:(2->4->3)+(5->6->4)
输出:7->0->8
说明:342+465=807。
思路 1
**- 时间复杂度: O(N)**- 空间复杂度: O(1)**
迭代,每次只算个位数的相加
class Solution {
public ListNode addTwoNumbers(ListNode l1, ListNode l2) {
if (l1 == null) {
return l2;
}
if (l2 == null) {
return l1;
}
ListNode head = new ListNode(0);
ListNode p = head;
int tmp = 0;
while(l1 != null || l2 != null || tmp != 0) {
if(l1 != null) {
tmp += l1.val;
l1 = l1.next;
}
if(l2 != null) {
tmp += l2.val;
l2 = l2.next;
}
p.next = new ListNode(tmp % 10);
p = p.next;
tmp = tmp / 10;
}
return head.next;
}
}
思路 2
**- 时间复杂度: O(N)**- 空间复杂度: O(1)**
可以使用递归,每次算一位的相加, beats 70.66%
class Solution {
public ListNode addTwoNumbers(ListNode l1, ListNode l2) {
if (l1 == null && l2 == null) {
return null;
} else if (l1 == null || l2 == null) {
return l1 != null ? l1: l2;
} else {
ListNode l3;
if (l1.val + l2.val < 10) {
l3 = new ListNode(l1.val + l2.val);
l3.next = addTwoNumbers(l1.next, l2.next);
} else {
l3 = new ListNode(l1.val + l2.val - 10);
l3.next = addTwoNumbers(l1.next, addTwoNumbers(l2.next, new ListNode(1)));
}
return l3;
}
}
}