leetcode 2. Add Two Numbers

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;
    }
};

在这里插入图片描述
感觉自己代码还是很冗余,希望之后能够写得更加精简。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值