题目描述:
Given two non-negative integers num1
and num2
represented as string, return the sum of num1
and num2
.
Note:
- The length of both
num1
andnum2
is < 5100. - Both
num1
andnum2
contains only digits0-9
. - Both
num1
andnum2
does not contain any leading zero. - You must not use any built-in BigInteger library or convert the inputs to integer directly.
将两个数字字符串相加,方法就是模拟竖式相加。
class Solution {
public:
string addStrings(string num1, string num2) {
int i=num1.size()-1;
int j=num2.size()-1;
int sum=0;
int carry=0;
string result;
while(i>=0&&j>=0)
{
sum=carry+num1[i]-'0'+num2[j]-'0';
result=to_string(sum%10)+result;
carry=sum/10;
i--;
j--;
}
while(i>=0)
{
sum=carry+num1[i]-'0';
result=to_string(sum%10)+result;
carry=sum/10;
i--;
}
while(j>=0)
{
sum=carry+num2[j]-'0';
result=to_string(sum%10)+result;
carry=sum/10;
j--;
}
if(carry==1) result="1"+result;
return result;
}
};