leetcode面试准备:Multiply Strings
1 题目
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.
接口: public String multiply(String num1, String num2);
2 思路
大整数的乘法,不能够简单用Integer.valueOf(String s)
,会产生溢出错误。
我们先来看一下289*758的计算过程:
首先我们把每一位相乘,得到一个没有进位的临时结果,如图中中间的一行红色数字就是临时结果(最多只有m + n - 1个,可以用数组保存),然后把临时结果从低位起依次进位。
对于一个m位整数乘以n位整数的结果,最后得到的结果最多是m+n
位。
因此,得出下面的算法:
1.翻转string
2.建立中间结果数组,循环遍历两个string,把单位的乘积累加到数组相应的位置
3.处理进位并输出
4.注意前导零的测试用例和测试用例(0,0)
我们有趣的发现, 红色的中间结果是有规律的:
- 109 = 88 + 95;这两对乘积所取的元素下标是(1,0)和(0,1),下标的和是1。
- 110 = 28 + 85 + 9*7;这三对乘积所取的元素下标是(2,0) (1,1) (0,2),下标的和是2。
利用这个特性,可以计算出中间结果数组。
复杂度: Time: O(n^2) ; Space: O(m + n)
3 代码
public String multiply(String num1, String num2) {
StringBuilder s1 = new StringBuilder(num1).reverse();
StringBuilder s2 = new StringBuilder(num2).reverse();
final int len1 = s1.length();
final int len2 = s2.length();
int[] tmp = new int[len1 + len2 - 1];
for (int i = 0; i < len1; i++) {
for (int j = 0; j < len2; j++) {
tmp[i + j] += (s1.charAt(i) - '0') * (s2.charAt(j) - '0');
}
}
StringBuilder result = new StringBuilder(len1 + len2);
for (int i = 0; i < tmp.length; i++) {
int mod = tmp[i] % 10;
int carry = tmp[i] / 10;
if (i + 1 < tmp.length) {
tmp[i + 1] += carry;
result.insert(0, mod);
} else {
result.insert(0, tmp[i]);
}
}
while (result.charAt(0) == '0' && result.length() > 1) {
result.deleteCharAt(0);
}
return result.toString();
}
4 总结
- 想出利用中间的乘积结果来计算乘积是关键。
- 如何求中间结果是有规律的。
5 扩展
更高效的计算大整数乘法一般有:
1.karatsuba算法,复杂度为3nlog3≈3n1.585,可以参考百度百科、面试题——大整数乘法、乘法算法-Karatsuba算法。
2.基于FFT(快速傅里叶变换)的算法,复杂度为o(nlogn), 可以参考FFT, 卷积, 多项式乘法, 大整数乘法
6 参考
leetcode面试准备:Multiply Strings的更多相关文章
- [Leetcode][Python]43: Multiply Strings
# -*- coding: utf8 -*-'''__author__ = 'dabay.wang@gmail.com' 43: Multiply Stringshttps://leetcode.co ...
- 【LeetCode练习题】Multiply Strings
Multiply Strings Given two numbers represented as strings, return multiplication of the numbers as a ...
- 【LeetCode】43. Multiply Strings
Multiply Strings Given two numbers represented as strings, return multiplication of the numbers as a ...
- 【一天一道LeetCode】#43. Multiply Strings
一天一道LeetCode系列 (一)题目 Given two numbers represented as strings, return multiplication of the numbers ...
- 【LeetCode】43. Multiply Strings 解题报告(Python & C++)
作者: 负雪明烛 id: fuxuemingzhu 个人博客: http://fuxuemingzhu.cn/ 目录 题目描述 题目大意 解题方法 日期 题目地址:https://leetcode.c ...
- LeetCode:43. Multiply Strings (Medium)
1. 原题链接 https://leetcode.com/problems/multiply-strings/description/ 2. 题目要求 给定两个String类型的正整数num1.num ...
- LeetCode OJ:Multiply Strings (字符串乘法)
Given two numbers represented as strings, return multiplication of the numbers as a string. Note: Th ...
- 【leetcode】43. Multiply Strings(大数相乘)
Given two non-negative integers num1 and num2 represented as strings, return the product of num1 and ...
- LeetCode题解之Multiply Strings
1.题目描述 2.问题分析 按照手算乘法的过程进行计算,首先计算乘法,然后计算加法. 3.代码 string multiply(string num1, string num2) { string s ...
随机推荐
- C#随机函数random()典型用法集锦
C#随机函数random()典型用法集锦 Random.Next() 返回非负随机数: Random.Next(Int) 返回一个小于所指定最大值的非负随机数 Random.Next(Int,Int) ...
- JavaScript 开发规范要求详解
作为一名开发人员(We前端JavaScript开发),不规范的开发不仅使日后代码维护变的困难,同时也不利于团队的合作,通常还会带来代码安全以及执行效率上的问题.本人在开发工作中就曾与不按规范来开发的同 ...
- centos 6.3 编译安装 nginx +mysql + php
这篇文章是对另一篇文章的整理,作为记录收藏 1,配置防火墙,开启80端口.3306端口 配置iptables,开启80端口.3306端口 vi /etc/sysconfig/iptables -A I ...
- 学习java随笔第七篇:java的类与对象
类 同一个包(同一个目录),类的创建与调用 class Man{ String name; void GetMyName() { System.out.println(name); } } publi ...
- C#DbHelperMySQL数据库帮助类 (转载)
主要功能如下数据访问抽象基础类 主要是访问Mysql数据库主要实现如下功能 .得到最大值 .是否存在 .是否存在(基于MySqlParameter) .执行SQL语句,返回影响的记录数 .执行MySq ...
- [转]看看国外的javascript题目,你能全部做对吗?
叶小钗 的博客最近都在讨论面试题目 正好以前也看过一篇,就借花献佛拿出来分享一下 http://perfectionkills.com/javascript-quiz/ 附带了自己的理解,答案有争议的 ...
- Codeforces 549C The Game Of Parity(博弈)
The Game Of Parity Solution: 这个题只需要分类讨论就可以解决. 先分别统计奇数和偶数的个数. 然后判断谁走最后一步,如果走最后一步时候同时有偶数和奇数,那么走最后一步的赢. ...
- DOM&SAX解析XML
在上一篇随笔中分析了xml以及它的两种验证方式.我们有了xml,但是里面的内容要怎么才能得到呢?如果得不到的话,那么还是没用的,解析xml的方式主要有DOM跟SAX,其中DOM是W3C官方的解析方式, ...
- MYSQL 不排序
mysql: SELECT * FROM EVENT WHERE eventId IN(443,419,431,440,420,414,509) ORDER BY INSTR(',443,419,43 ...
- php 目录及文件操作
// bool is_dir(string $filename) 判断给定文件名是否是一个目录.// resource opendir(string $path[,resource $context] ...