2、 两数相加
给你两个 非空 的链表,表示两个非负的整数。它们每位数字都是按照 逆序 的方式存储的,并且每个节点只能存储 一位 数字。
请你将两个数相加,并以相同形式返回一个表示和的链表。
你可以假设除了数字 0 之外,这两个数都不会以 0 开头。
示例 1:
输入:l1 = [2,4,3], l2 = [5,6,4]
输出:[7,0,8]
解释:342 + 465 = 807.
示例 2:
输入:l1 = [0], l2 = [0]
输出:[0]
示例 3:
输入:l1 = [9,9,9,9,9,9,9], l2 = [9,9,9,9]
输出:[8,9,9,9,0,0,0,1]
提示:
每个链表中的节点数在范围 [1, 100] 内
0 <= Node.val <= 9
题目数据保证列表表示的数字不含前导零
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/add-two-numbers
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
初始代码:
class Solution {
public ListNode addTwoNumbers(ListNode l1, ListNode l2) {
ListNode l3=new ListNode();
ListNode l=l3;
//rise记录进位的标志
int sum=0,rise=0;
while(l1!=null||l2!=null){
//等长情况
if (l1!=null&&l2!=null){
sum=l1.val+l2.val+rise;
rise=0;
if (sum>=10){
rise=sum/10;
l.next=new ListNode(sum%10,null);
l=l.next;
}
else{
l.next=new ListNode(sum,null);
l=l.next;
}
}
//长度不一致时
if (l1!=null&&l2==null){
l.next=new ListNode((l1.val+rise)%10,null);
l=l.next;
rise=(l1.val+rise)/10;
}
if(l1==null&&l2!=null){
l.next=new ListNode((l2.val+rise)%10,null);
l=l.next;
rise=(l2.val+rise)/10;
}
if(l1!=null)l1=l1.next;
if(l2!=null)l2=l2.next;
if(l1==null&&l2==null){
if(rise>0){
l.next=new ListNode(rise,null);
l=l.next;
}
}
}
//头指针为null
return l3.next;
}
}
优化后:
public class Solution{
ListNode head = null;
Solution(){
this.head = new ListNode(0);
}
public ListNode addTwoNumbers(ListNode l1, ListNode l2) {
ListNode p = l1, q = l2;
int carry = 0;
while (p != null || q != null) {
int x = (p != null) ? p.val : 0;
int y = (q != null) ? q.val : 0;
int sum = carry + x + y;
carry = sum / 10;
add(sum % 10);
if (p != null) p = p.next;
if (q != null) q = q.next;
}
if (carry > 0) {
add(carry);
}
return this.head.next;
}
public void add(int val){
ListNode newNode = new ListNode(val);
ListNode tailNode = null;
ListNode starNode = this.head;
while(starNode.next != null){
starNode = starNode.next;
}
tailNode = starNode;
tailNode.next = newNode;
}
}