[力扣]445.两数相加

445. 两数相加 II

给你两个非空链表来代表两个非负整数。数字最高位位于链表开始位置。它们的每个节点只存储一位数字。将这两数相加会返回一个新的链表。

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

  • 进阶:
    如果输入链表不能修改该如何处理?换句话说,你不能对列表中的节点进行翻转。

示例:

输入:(7 -> 2 -> 4 -> 3) + (5 -> 6 -> 4)
输出:7 -> 8 -> 0 -> 7
/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) { val = x; }
 * }
 */
class Solution {
    public ListNode addTwoNumbers(ListNode l1, ListNode l2) {
        Stack stack1 = new Stack<>();
        Stack stack2 = new Stack<>();
        while (l1 != null) {
            stack1.push(l1.val);
            l1 = l1.next;
        }
        while (l2 != null) {
            stack2.push(l2.val);
            l2 = l2.next;
        }
        int carry = 0;
        ListNode head = null;
        while (!stack1.isEmpty() || !stack2.isEmpty() || carry > 0) {
            int sum = carry;
            sum += stack1.isEmpty()? 0 : stack1.pop();
            sum += stack2.isEmpty()? 0 : stack2.pop();
            // 链表头插法 注意前面链头定义为null
            ListNode node = new ListNode(sum % 10);
            //这个时候node已经变成了链表头,高位在前,低位在后。
            node.next = head;
            //由于node是临时变量,不能返回,我们用head代替node,作为链表头
            //此时,依然是高位在前,低位在后。
            head = node;
            carry = sum / 10;
        }
        return head;
    }
}

你可能感兴趣的:([力扣]445.两数相加)