This repository was archived by the owner on May 16, 2021. It is now read-only.
forked from zhuli19901106/leetcode-zhuli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadd-two-numbers-ii_1_AC.cpp
73 lines (65 loc) · 1.57 KB
/
add-two-numbers-ii_1_AC.cpp
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#include <algorithm>
#include <vector>
using std::max;
using std::vector;
/**
* 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) {
if (l1 == NULL) {
return l2;
}
if (l2 == NULL) {
return l1;
}
const int R = 10;
int n1 = listLength(l1);
int n2 = listLength(l2);
vector<int> v;
v.resize(max(n1, n2) + 1, 0);
addList(l1, n1, v);
addList(l2, n2, v);
int i;
int n3 = v.size();
for (i = 1; i < n3; ++i) {
v[i] += v[i- 1] / R;
v[i - 1] %= R;
}
while (v.size() > 1 && v.back() == 0) {
v.pop_back();
}
ListNode *l3, *t3;
n3 = v.size();
l3 = t3 = new ListNode(v[n3 - 1]);
for (i = n3 - 2; i >= 0; --i) {
t3->next = new ListNode(v[i]);
t3 = t3->next;
}
return l3;
}
private:
int listLength(ListNode *head) {
int n = 0;
ListNode *ptr = head;
while (ptr != NULL) {
ptr = ptr->next;
++n;
}
return n;
}
void addList(ListNode *head, int len, vector<int> &v) {
int i;
ListNode *ptr = head;
for (i = 0; i < len; ++i) {
v[len - 1 - i] += ptr->val;
ptr = ptr->next;
}
}
};