Leetcode: Add Strings

Posted neverlandly

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode: Add Strings相关的知识,希望对你有一定的参考价值。

Given two non-negative numbers num1 and num2 represented as string, return the sum of num1 and num2.

Note:

The length of both num1 and num2 is < 5100.
Both num1 and num2 contains only digits 0-9.
Both num1 and num2 does not contain any leading zero.
You must not use any built-in BigInteger library or convert the inputs to integer directly.

 

 1 public class Solution {
 2     public String addStrings(String num1, String num2) {
 3         StringBuffer res = new StringBuffer();
 4         int i = num1.length()-1;
 5         int j = num2.length()-1;
 6         int carry = 0;
 7         while (i>=0 || j>=0 || carry!=0) {
 8             int sum = 0;
 9             if (i >= 0) {
10                 sum += (int)(num1.charAt(i) - ‘0‘);
11                 i--;
12             }
13             if (j >= 0) {
14                 sum += (int)(num2.charAt(j) - ‘0‘);
15                 j--;
16             }
17             if (carry != 0) {
18                 sum += carry;
19             }
20             int digit = sum % 10;
21             carry = sum / 10;
22             res.insert(0, digit);
23         }
24         return res.toString();
25     }
26 }

 

以上是关于Leetcode: Add Strings的主要内容,如果未能解决你的问题,请参考以下文章

leetcode练习:258. Add Digits & 415. Add Strings

Add Strings Leetcode

leetcode 415. Add Strings

LeetCode 415. Add Strings

leetcode-415. Add Strings

[leetcode-415-Add Strings]