题目
给出两个 非空 的链表用来表示两个非负的整数。其中,它们各自的位数是按照 逆序 的方式存储的,并且它们的每个节点只能存储 一位 数字。
如果,我们将这两个数相加起来,则会返回一个新的链表来表示它们的和。
您可以假设除了数字 0 之外,这两个数都不会以 0 开头。
示例:
输入:(2 -> 4 -> 3) + (5 -> 6 -> 4)
输出:7 -> 0 -> 8
原因:342 + 465 = 807
来源:力扣(LeetCode)
题解
玄学的情况出现了,无论我按照什么写法来写(包括得分比我高的算法),都没法缩短判题时间,也许是leetcode服务器负载过大,使得题目运行速度减慢了。
其实都是一样的思路,没有别的什么办法。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
class Solution { public: ListNode* addTwoNumbers(ListNode* l1, ListNode* l2) { ListNode *res = new ListNode(0); register ListNode *p = res; register int y, carry = 0;
while (l1 || l2) {
y = carry + (l1?l1->val:0) + (l2?l2->val:0); carry = y / 10;
p -> next = new ListNode(y % 10); p = p -> next;
l1 = l1?l1->next:l1; l2 = l2?l2->next:l2; } if (carry) { p -> next = new ListNode(carry); }
return res -> next; } };
|
结果
执行用时 : 60 ms, 在所有 C++ 提交中击败了16.69%的用户
内存消耗 : 10.5 MB, 在所有 C++ 提交中击败了75.22%的用户