首页 > 代码库 > Leetcode: Add Strings
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
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。