问题详情
Add Two Numbers
You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and return it as a linked list.
You may assume the two numbers do not contain any leading zero, except the number 0 itself.
Input: (2 -> 4 -> 3) + (5 -> 6 -> 4)
Output: 7 -> 0 -> 8
问题分析与思路
问题中要求按照顺序将两列数字相加,并且每列中的数字一次只能有一位,并向后进位。
并且题目已经给出部分代码框架如下
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
class Solution {
public:
ListNode* addTwoNumbers(ListNode* l1, ListNode* l2) {
};
由此框架我得出的思路是将两个整数表示为链表,然后从第一位(个位)开始依次相加,并且将得出的数取出个位数放进新的链表中,然后将得出的数的十位用于下一位加法。
值得注意的是有可能出现类似一个链表有三位,一个有两位的情况,所以我使用了一个while来判断两个链表是否同时为null,同时我使用了判断语句?:来检验两个链表是否为空并且定义他的值。
编程中遇到的问题
解决问题时我忽略了最后一位的加法的进位,因此fail了,于是我在while外面又加了几行代码,轻松解决问题。
另外我使用同一代码,运行时间一次击败了百分之七的代码,一次击败了百分之44的代码,运行时间相差近一倍。我觉得这应该与网速和电脑速度有关?
具体代码
class Solution {
public:
ListNode* addTwoNumbers(ListNode* l1, ListNode* l2) {
ListNode *l3 = new ListNode(0);
int carry = 0;
int sum;
ListNode *l4 = l3;
while(l1 != NULL || l2 != NULL) {
sum = (l1 ? l1->val : 0) + (l2 ? l2 -> val : 0) + carry;
l4 -> next = new ListNode(sum % 10);
carry = sum / 10;
l1 = l1? l1->next : l1;
l2 = l2? l2->next : l2;
l4 = l4 -> next;
}
if (carry > 0) {
l4->next = new ListNode(carry);
}
return l3->next;
}
};