415. 字符串相加
给定两个字符串形式的非负整数 num1 和num2 ,计算它们的和。
提示:
- num1 和num2 的长度都小于 5100
- num1 和num2 都只包含数字 0-9
- num1 和num2 都不包含任何前导零
- 你不能使用任何內建 BigInteger 库, 也不能直接将输入的字符串转换为整数形式
解法一
class Solution {
public String addStrings(String num1, String num2) {
int carry = 0;
int i = num1.length() - 1;
int j = num2.length() - 1;
StringBuffer result = new StringBuffer();
while (i >= 0 || j >= 0 || carry != 0) {
int a = i >= 0 ? num1.charAt(i) - '0' : 0;
int b = j >= 0 ? num2.charAt(j) - '0' : 0;
int res = a + b + carry;
carry = res / 10;
res = res % 10;
result.append(res);
i--;
j--;
}
return result.reverse().toString();
}
}