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 contains a single digit. Add the two numbers and return the sum as a linked list.
You may assume the two numbers do not contain any leading zero, except the number 0 itself.
题解:
简单来想,这个链表的相加实现其实类似于计组和数电里学的全加器。从最后一位开始加,分别是Ai,Bi和进位Ci,赋值Ci=0. 并初始化答案链表ans。我们可以设定循环,循环内部是这样,首先初始化Ai,Bi均为0,如果L1、L2本身不是null的话,就分别赋值Ai,Bi为结点的值,ans建立新节点的值为三者之和并mod 10. 然后Ci的赋值是三者之和/10. 循环直至两者的next均为null且Ci=0.
代码:
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode() : val(0), next(nullptr) {}
* ListNode(int x) : val(x), next(nullptr) {}
* ListNode(int x, ListNode *next) : val(x), next(next) {}
* };
*/
class Solution {
public:
ListNode* addTwoNumbers(ListNode* l1, ListNode* l2) {
int a,b,c=0;
ListNode* ans= new ListNode();
ListNode* now= ans;
while(l1!=NULL||l2!=NULL||c==1){
if(l1!=NULL){
a=l1->val;
l1=l1->next;//刚开始没想到要放在这个里面,后来出错才放进去了
}
else a=0;
if(l2!=NULL){
b=l2->val;
l2=l2->next;
}
else b=0;
now->val=(a+b+c)%10;
c=(a+b+c)/10;
if(l1!=NULL||l2!=NULL||c==1){
//这个判断条件是因为如果不加的话,链表最前面会出现0
//其实应该可以换换,但暂时没想到
ListNode* p=new ListNode();
now->next=p;
now=p;
}
}
return ans;
}
};
感觉自己代码还是很冗余,希望之后能够写得更加精简。