-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaddStrings.cpp
52 lines (45 loc) · 1.2 KB
/
addStrings.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
#include<iostream>
#include<string>
#include<algorithm>
using namespace std;
string addStrings(string num1, string num2)
{
reverse(num1.begin(), num1.end());
reverse(num2.begin(), num2.end());
string result;
int carry = 0;
int i = 0, j = 0;
for(; i < num1.size() && j < num2.size(); ++i, ++j)
{
int tmp = num1[i] - '0' + num2[j] - '0' + carry;
carry = tmp / 10;
result.append(to_string(tmp % 10));
}
//cout << result << endl;
while(i < num1.size())
{
int tmp = num1[i] - '0' + carry;
carry = tmp / 10;
result.append(to_string(tmp % 10));
++i;
}
//cout << result << endl;
while(j < num2.size())
{
int tmp = num2[j] - '0' + carry;
carry = tmp / 10;
result.append(to_string(tmp % 10));
++ j;
}
if(carry != 0)
{
result = result.append(to_string(carry));
}
reverse(result.begin(), result.end());
return result;
}
int main()
{
cout << addStrings("11", "123") << endl;
return 0;
}