LeetCode 43. Multiply Strings(乘法)

21 篇文章 0 订阅
7 篇文章 0 订阅
本文介绍了一种解决LeetCode上大数相乘问题的方法,该问题要求输入两个字符串形式的大数并返回它们的乘积,同时不允许使用BigInteger等内部库进行转换。通过模拟手工乘法过程,该算法能有效处理任意大小的非负整数。
摘要由CSDN通过智能技术生成

原题网址:https://leetcode.com/problems/multiply-strings/

Given two numbers represented as strings, return multiplication of the numbers as a string.

Note:

  • The numbers can be arbitrarily large and are non-negative.
  • Converting the input string to integer is NOT allowed.
  • You should NOT use internal library such as BigInteger.

方法:模拟乘法运算。

public class Solution {
    public String multiply(String num1, String num2) {
        int[] n1 = new int[num1.length()];
        int[] n2 = new int[num2.length()];
        int[] m = new int[num1.length() + num2.length()];
        for(int i=0; i<n1.length; i++) {
            n1[n1.length-1-i] = num1.charAt(i)-'0';
        }
        for(int i=0; i<n2.length; i++) {
            n2[n2.length-1-i] = num2.charAt(i)-'0';
        }
        for(int i=0; i<n1.length; i++) {
            int carry = 0;
            for(int j=0; j<n2.length; j++) {
                int mul = m[i+j] + n1[i]*n2[j] + carry;
                m[i+j] = mul % 10;
                carry = mul / 10;
            }
            if (carry > 0) m[i+n2.length] += carry;
        }
        boolean notZero = false;
        StringBuilder sb = new StringBuilder();
        for(int i=m.length-1; i>=0; i--) {
            if (m[i] > 0) notZero = true;
            if (notZero) sb.append(m[i]);
        }
        if (!notZero) sb.append(0);
        return sb.toString();
    }
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值