zoukankan      html  css  js  c++  java
  • Multiply Strings

    大数相乘, 按位算结果, 注意全0,注意进位

     1 public class Solution {
     2     public String multiply(String num1, String num2) {
     3         // IMPORTANT: Please reset any member data you declared, as
     4         // the same Solution instance will be reused for each test case.
     5         int length1 = num1.length();
     6         int length2 = num2.length();
     7         int[] result = new int[length1 + length2 + 1];
     8         int resultlength = length1 + length2 + 1;
     9         for(int i = 0; i < length1; i++)
    10         {
    11             int carry = 0;
    12             int offset = resultlength - 1 - i;
    13             for(int j = 0; j < length2; j++)
    14             {
    15                 int tmp1 = num1.charAt(length1 - 1 - i) - '0';
    16                 int tmp2 = num2.charAt(length2 - 1 - j) - '0';
    17                 int tmpresult = tmp1 * tmp2 + carry + result[offset - j];
    18                 result[offset - j] = tmpresult % 10;
    19                 carry = tmpresult / 10;
    20             }
    21             if(carry > 0)
    22             {
    23                 int tmp = result[offset - length2] + carry;
    24                 result[offset - length2] = tmp % 10;
    25                 result[offset - length2 - 1] = tmp / 10;
    26             }
    27         }
    28         
    29         StringBuilder myresult = new StringBuilder();
    30         int i = 0;
    31         while(i < resultlength && result[i] == 0)
    32             i++;
    33         if(i >= resultlength)
    34             return "0";
    35         while(i < resultlength)
    36         {
    37             myresult.append(String.valueOf(result[i]));
    38             i++;
    39         }
    40         return myresult.toString();
    41     }
    42 }
  • 相关阅读:
    eshint的配置
    jsp 或 php 等view之中使用javascript简单处理的使用技巧
    响应式图片,在不同尺寸下切换不同张数
    swiper.js + jquery.magnific-popup.js 实现奇葩的轮播需要
    Websocket 协议的基本使用与示例
    vue手记
    docker 架构
    webpack基本使用
    vue组件、路由、事件
    vue基本使用
  • 原文地址:https://www.cnblogs.com/jasonC/p/3411659.html
Copyright © 2011-2022 走看看