题目描述
给定一个数组A[0,1,...,n-1],请构建一个数组B[0,1,...,n-1],其中B中的元素B[i]=A[0]*A[1]*...*A[i-1]*A[i+1]*...*A[n-1]。不能使用除法。
import java.util.ArrayList;
public class Solution {
public int[] multiply(int[] A) {
if(A.length<=1){
return null;
}
int[] B = new int[A.length];
B[0] = 1;
for(int i=1;i<B.length;i++){
B[i] = B[i-1]*A[i-1];
}
int temp = 1;
for(int j=B.length-1;j>=0;j--){
B[j] = B[j] * temp;
temp = temp * A[j];
}
return B;
}
}