<LeetCode OJ> 43. Multiply Strings

Posted EbowTang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了<LeetCode OJ> 43. Multiply Strings相关的知识,希望对你有一定的参考价值。

43. 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.


分析:

代码注释已经很详细,模拟手算即可

class Solution {
public:
    string multiply(string num1, string num2) {
        int allLen=num1.size()+num2.size();
        vector<int> tmpresult(allLen,0);
        string result(allLen,'0');
        //模拟手算从最后一位开始处理
        for(int i=num1.size()-1;i>=0;i--)
            for(int j=num2.size()-1;j>=0;j--)
                tmpresult[i+j+1]+= (num1[i]-'0')*(num2[j]-'0');
            
        //进位
        for(int i=allLen-1;i>0;i--)
        {
            if(tmpresult[i]>9)
            {
                tmpresult[i-1]+=tmpresult[i]/10;
                tmpresult[i]%=10;
            }
        }
        //转换成字符串
        for(int i=allLen-1;i>=0;i--)
            result[i]=tmpresult[i]+'0';
            
        if(result.find_first_not_of('0') == string::npos) 
            return "0";//排除全0的情况
        return result.substr(result.find_first_not_of('0'),string::npos);
    }
};



注:本博文为EbowTang原创,后续可能继续更新本文。如果转载,请务必复制本条信息!

原文地址:http://blog.csdn.net/ebowtang/article/details/50575524

原作者博客:http://blog.csdn.net/ebowtang

本博客LeetCode题解索引:http://blog.csdn.net/ebowtang/article/details/50668895

以上是关于<LeetCode OJ> 43. Multiply Strings的主要内容,如果未能解决你的问题,请参考以下文章

&lt;LeetCode OJ&gt; 62. / 63. Unique Paths(I / II)

LeetCode OJ 92. Reverse Linked List II

<LeetCode OJ> 78. Subsets

<LeetCode OJ> 337. House Robber III

<LeetCode OJ> 77. Combinations

LeetCode OJ combine 3