LeetCode 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) {
Deque<Integer> stack1 = new ArrayDeque<>();
Deque<Integer> stack2 = new ArrayDeque<>();
while(l1 != null){
stack1.push(l1.val);
l1 = l1.next;
}
while(l2 != null){
stack2.push(l2.val);
l2 = l2.next;
}
int sum = 0;
boolean carry = false;
ListNode head = null;
while(!stack1.isEmpty() || !stack2.isEmpty()||carry){
sum = 0;
sum += stack1.isEmpty() ? 0:stack1.pop();
sum += stack2.isEmpty() ? 0:stack2.pop();
if(carry) sum++;
ListNode node = new ListNode(sum%10);
//注意这里的处理
node.next = head;
head = node;
carry = (sum >= 10) ? true:false;
}//不用再单独处理最后的进位了,carry已经被包括到while的判断语句中了
return head;
}
}