leetcode 2. 两数相加

mac2026-05-06  6

给出两个 非空 的链表用来表示两个非负的整数。其中,它们各自的位数是按照 逆序 的方式存储的,并且它们的每个节点只能存储 一位 数字。

如果,我们将这两个数相加起来,则会返回一个新的链表来表示它们的和。

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

示例: 输入:(2 -> 4 -> 3) + (5 -> 6 -> 4) 输出:7 -> 0 -> 8 原因:342 + 465 = 807

C++实现:

class Solution { public: ListNode* addTwoNumbers(ListNode* ptListL, ListNode* ptListR) { if (ptListL == NULL) return ptListR; if (ptListR == NULL) return ptListL; int nSum = 0; int nCount = 0; ListNode *ptHead = new ListNode(0); ListNode *phTmp = ptHead; while (ptListL && ptListR) { nSum = nCount + ptListL->val + ptListR->val; nCount = nSum / 10; nSum = nSum % 10; phTmp->next = new ListNode(nSum); phTmp = phTmp->next; ptListL = ptListL->next; ptListR = ptListR->next; } if (ptListR != NULL) ptListL = ptListR; while (ptListL) { nSum = nCount + ptListL->val; nCount = nSum / 10; nSum = nSum % 10; phTmp->next = new ListNode(nSum); phTmp = phTmp->next; ptListL = ptListL->next; } if (nCount) { phTmp->next = new ListNode(1); } phTmp = ptHead->next; delete ptHead; return phTmp; } }; 执行结果: 通过 显示详情 执行用时 :32 ms, 在所有 cpp 提交中击败了73.04% 的用户 内存消耗 :10.4 MB, 在所有 cpp 提交中击败了78.82%的用户
最新回复(0)