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.
原文链接http://blog.youkuaiyun.com/crazy__chen/article/details/45752001
本文提供了一种解决两个大数相乘问题的有效方法,并通过Java代码实现了这一算法。该算法能够处理任意大的非负整数,将输入的字符串形式的大数转换为字符数组进行逐位相乘,最后把结果转换回字符串形式返回。
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.
原文链接http://blog.youkuaiyun.com/crazy__chen/article/details/45752001

被折叠的 条评论
为什么被折叠?