题目 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. 分析 计算两个字符串表示的非负大整数的乘积,结果仍然用字符串表示. 我们都熟悉笔算的整数乘积,按照被乘数逐位与乘数求积,保存进位:当被乘数换位时,结果递增一个数量级,与先前结果求和…