forked from zhuli19901106/leetcode-zhuli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadd-strings_1_AC.cpp
38 lines (37 loc) · 902 Bytes
/
add-strings_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
#include <algorithm>
#include <cstring>
using std::max;
using std::memset;
class Solution {
public:
string addStrings(string num1, string num2) {
int len1 = num1.size();
int len2 = num2.size();
memset(buf, 0, MAXN * sizeof(int));
int i;
for (i = 0; i < len1; ++i) {
buf[len1 - 1 - i] += num1[i] - '0';
}
for (i = 0; i < len2; ++i) {
buf[len2 - 1 - i] += num2[i] - '0';
}
int len = max(len1, len2);
for (i = 0; i < len; ++i) {
buf[i + 1] += buf[i] / 10;
buf[i] %= 10;
}
i = len;
string res = "";
while (i > 0 && buf[i] == 0) {
--i;
}
while (i >= 0) {
res.push_back(buf[i] + '0');
--i;
}
return res;
}
private:
static const int MAXN = 5105;
int buf[MAXN];
};