有空就看看的leetcode2——两数相加(c++版)

有空就看看的leetcode2——两数相加(c++版)

学习前言

考试好难啊。
在这里插入图片描述

题目

给出两个 非空 的链表用来表示两个非负的整数。其中,它们各自的位数是按照 逆序 的方式存储的,并且它们的每个节点只能存储 一位 数字。

如果,我们将这两个数相加起来,则会返回一个新的链表来表示它们的和。

您可以假设除了数字 0 之外,这两个数都不会以 0 开头。

示例:
输入:(2 -> 4 -> 3) + (5 -> 6 -> 4)
输出:7 -> 0 -> 8
原因:342 + 465 = 807

函数的用法

1、建立新结构体。

head = new ListNode(-1);

2、尾插法

temp = new ListNode(sum_all%10);
tail->next = temp;
tail = tail->next;

解法

/**
 * 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) {
        ListNode* head;
        ListNode* tail;
        ListNode* temp;
        head = new ListNode(-1);
        tail = head;

        long long temp1 = 0;
        long long temp2 = 0;
        long long sum_all = 0;
        while(l1!= NULL || l2 != NULL ||sum_all!=0){
            if (l1!=NULL){
                temp1 = l1->val;
                l1 = l1->next;
            }
            if (l2!=NULL){
                temp2 = l2->val;
                l2 = l2->next;
            }
            sum_all = temp1+temp2+sum_all;

            temp = new ListNode(sum_all%10);
            tail->next = temp;
            tail = tail->next;

            temp1 = 0;
            temp2 = 0;
            sum_all = sum_all/10;
        }
        head = head->next;
        return head;
    }
};

思路:
从最小的位数开始相加,如果有进一则进一,利用尾插法插入链表。

时间复杂度:O(max(m,n))
空间复杂度:O(max(m,n))

发布了167 篇原创文章 · 获赞 112 · 访问量 24万+

猜你喜欢

转载自blog.csdn.net/weixin_44791964/article/details/103774366