LeetCode每天刷day29:Multiply Strings

题目:
给定两个以字符串形式表示的非负整数 num1 和 num2,返回 num1 和 num2 的乘积,它们的乘积也表示为字符串形式。

num1 和 num2 的长度小于110。
num1 和 num2 只包含数字 0-9。
num1 和 num2 均不以零开头,除非是数字 0 本身。
不能使用任何标准库的大数类型(比如 BigInteger)或直接将输入转换为整数来处理。

题目链接:Multiply Strings

C++:

class Solution {
public:
string multiply(string num1, string num2) {
        if (num1[0] == '0' || num2[0] == '0')
            return "0";
        int len1 = num1.size(), len2 = num2.size();
        int num[len1 + len2] = {0};
        for (int i = num1.size() - 1; i >= 0; i--) 
            for (int j = num2.size() - 1; j >= 0; j--)
                num[i + j + 1] += (num1[i] - '0') * (num2[j] - '0');
        
        int carry = 0;
        for (int i = len1 + len2 - 1; i >= 0; i--) {
            num[i] += carry;
            carry = num[i] / 10;
            num[i] %= 10;
        }
        string ans;
        int idx = 0;
        while (idx < len1 + len2 && num[idx] == 0)
            idx++;
        for (; idx < len1 + len2; idx++)
            ans += num[idx] + '0';
        return ans;
    }
};
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值