码迷,mamicode.com
首页 > 其他好文 > 详细

<Math> 258 43

时间:2019-12-02 17:22:21      阅读:92      评论:0      收藏:0      [点我收藏+]

标签:图片   image   数字   append   stringbu   等于   for   http   mamicode   

258. Add Digits

技术图片

 

 

 

class Solution {
    public int addDigits(int num) {
        if(num == 0)
            return 0;
        if(num % 9 == 0){
            return 9;
        }else{
            return num % 9;
        }
    }
}

43. Multiply Strings

小学乘法计算,计算得出的数字最大有 i + j 位。

最后保证第一位不等于0则添加到StringBuilder的队尾。

class Solution {
    public String multiply(String num1, String num2) {
        int m = num1.length(), n = num2.length();
        int[] pos = new int[m + n];
        
        for(int j = n - 1; j >= 0; j--){
            for(int i = m - 1; i >= 0; i--){
                int product = (num1.charAt(i) - ‘0‘) * (num2.charAt(j) - ‘0‘);
                int p1 = i + j, p2 = i + j + 1;
                int sum = product + pos[p2];
                pos[p1] += sum / 10;
                pos[p2] = sum % 10;
            }
        }
        
        StringBuilder sb = new StringBuilder();
        for(int p : pos){
            if(!(sb.length() == 0 && p == 0)) sb.append(p);
        }
  
return sb.length() == 0 ? "0" : sb.toString();
} }

 

<Math> 258 43

标签:图片   image   数字   append   stringbu   等于   for   http   mamicode   

原文地址:https://www.cnblogs.com/Afei-1123/p/11971070.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!