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
题目分析:给出两个非负整数,以链表形式倒序给出。求他们的和,然后再倒序用链表表示出来。最基本的思路是一次遍历两个链表,然后得到两个整数值,相加之后再倒序表示,这种解法的复杂度是O(n),但是较为麻烦。由于本题已经给出了数字的链表倒序表示方法,因此我们可以将当前节点l1与l2的值进行相加,此时得出的值一定是对应倒过来的相应位置的值(不考虑前一节点有进位和后一节点进位的情况),这样我们就不用遍历两次链表了,依次遍历两个链表,相加得出他们对应位置上的和,终止条件就是两个链表都为空且没有产生进位的情况。然后我们可以用依次遍历,设置一个整数表示进位数字,初始为0,有进位则为1.一次遍历即可。
public ListNode addTwoNumbers(ListNode l1, ListNode l2) {
ListNode result = new ListNode(0);
int add = 0;
ListNode node=result;
while (l1 != null || l2 != null) {
int i1 = 0;
int i2 = 0;
if (l1 != null) {
i1 = l1.val;
l1 = l1.next;
}
if (l2 != null) {
i2 = l2.val;
l2 = l2.next;
}
node.val=(i1+i2+add)%10;
add=(i1+i2+add)/10;
if(l1!=null||l2!=null||add!=0){
node.next=new ListNode(add);
}
node=node.next;
}
return result;
}
网友评论