leetcode-两个链表生成相加链表-76

Posted 天津 唐秙

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode-两个链表生成相加链表-76相关的知识,希望对你有一定的参考价值。

题目要求
  假设链表中每一个节点的值都在 0 - 9 之间,那么链表整体就可以代表一个整数。
给定两个这种链表,请生成代表两个整数相加值的结果链表。
例如:链表 1 为 9->3->7,链表 2 为 6->3,最后生成新的结果链表为 1->0->0->0。
解析
1.将链表翻转
2.将链表相加,如果大于10,则有进位,如果链表A,链表B,进位中任何一个有值,都需再往前执行一次
3.将链表翻转回来
代码实现

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode(int x) : val(x), next(NULL) {}
 * };
 */

class Solution {
public:
    /**
     * 
     * @param head1 ListNode类 
     * @param head2 ListNode类 
     * @return ListNode类
     */

    ListNode* reverseList(ListNode* head)
    {
        if(head == nullptr || head->next == nullptr)
            return head;
        ListNode* prev = head;
        ListNode* cur = prev->next;
        ListNode* next = cur->next;
        prev->next = nullptr;
        cur->next = prev;
        while(next != nullptr)
        {
            prev = cur;
            cur = next;
            next = next->next;
            cur->next = prev;
        }
        return cur;
    }

    ListNode* addInList(ListNode* head1, ListNode* head2) {
        // write code here
        if(head1 == nullptr)
            return head2;
        if(head2 == nullptr)
            return head1;
        
        ListNode* l1 = reverseList(head1);
        ListNode* l2 = reverseList(head2);
        ListNode* ans = new ListNode(0);
        ListNode* cur = ans;
    
        int carry = 0;//进位
        while(l1 || l2 || carry)
        {
            int x = l1 ? l1->val : 0;
            int y = l2 ? l2->val : 0;
            int sum  = x + y + carry;
            carry = sum / 10;;
            sum %= 10;
       		cur->next = new ListNode(sum);//val = sum
 	           cur = cur->next;
            if(l1)
                l1 = l1->next;
            if(l2)
                l2 = l2->next;
        }
        ans = ans->next;
        ans = reverseList(ans);
        return ans;
    }
};

以上是关于leetcode-两个链表生成相加链表-76的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode第2天 - 2. 两数相加

Leetcode 两个数字相加 Q:如何从一个数字创建链表?

LeetCode 链表两数相加

LeetCode 链表两数相加

leetcode-2 两数相加(链表的头插法尾插法两个不同长度链表相加减操作的处理方法)

leetcode-2 两数相加(链表的头插法尾插法两个不同长度链表相加减操作的处理方法)