码迷,mamicode.com
首页 > 其他好文 > 详细

lc 两数相加

时间:2020-05-25 00:15:00      阅读:65      评论:0      收藏:0      [点我收藏+]

标签:https   div   nullptr   ref   ret   ber   gif   linked   leetcode   

链接:https://leetcode-cn.com/problems/add-two-numbers/

代码:

技术图片
/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode(int x) : val(x), next(NULL) {}
 * };
 */
class Solution {
public:
    ListNode* addTwoNumbers(ListNode* l1, ListNode* l2) {
        if(l1 == nullptr && l2 == nullptr) return nullptr;
        ListNode* head = new ListNode(-1);
        ListNode* cur = head;
        int carry = 0;
        while(l1 || l2) {
            int sum = 0;
            if(l1) {
                sum += l1->val;
                l1 = l1->next;
            }
            if(l2) {
                sum += l2->val;
                l2 = l2->next;
            }
            if(carry) {
                sum += 1;
            }
            cur->next = new ListNode(sum%10);
            carry = sum / 10;
            cur = cur->next;
        }
        if(carry) {
            cur->next = new ListNode(1);
        }
        return head->next;
    }
};
View Code

思路:模拟字符串即可,进位,增加一位 blabla...

lc 两数相加

标签:https   div   nullptr   ref   ret   ber   gif   linked   leetcode   

原文地址:https://www.cnblogs.com/FriskyPuppy/p/12953512.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!