LeetCode 2. 两数相加
原题链接
中等
作者:
Bug-Free
,
2021-07-20 21:34:56
,
所有人可见
,
阅读 474
模拟
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode() : val(0), next(nullptr) {}
* ListNode(int x) : val(x), next(nullptr) {}
* ListNode(int x, ListNode *next) : val(x), next(next) {}
* };
*/
class Solution {
public:
ListNode* addTwoNumbers(ListNode* l1, ListNode* l2) {
// 要插入的时候定义一个虚拟头节点, 就不需要特判第一个点了
auto dummy = new ListNode(-1), cur = dummy; //cur 表示 sum链表的尾结点
int t = 0;
while (l1 || l2 || t) {
if (l1) {
t += l1->val, l1 = l1->next;
}
if (l2) {
t += l2->val, l2 = l2->next;
}
cur = (cur->next = new ListNode(t % 10));
t /= 10;
}
return dummy->next; // 真正的链表头结点
}
};