-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMultiply.java
More file actions
38 lines (30 loc) · 913 Bytes
/
Multiply.java
File metadata and controls
38 lines (30 loc) · 913 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import java.util.Arrays;
/**
* 43. 字符串相乘
*/
public class Multiply {
public String multiply(String num1, String num2){
if(num1.length()==0 || num2.length()==0 || num1.equals("0") || num2.equals("0")){
return "0";
}
int[] res = new int[num1.length()+num2.length()];
int temp=0;
for(int i=num1.length()-1; i>=0; i--){
int n1 = num1.charAt(i)-'0';
for(int j=num2.length()-1; j>=0; j--){
int n2 = num2.charAt(j) - '0';
temp = n1*n2+res[i+j+1];
res[i+j+1] = temp%10;
res[i+j] += temp/10;
}
}
StringBuilder sb = new StringBuilder();
for(int i=0; i<res.length; i++){
if(i==0 && res[i]==0){
continue;
}
sb.append(res[i]);
}
return sb.toString();
}
}