标签:== 数组 i+1 sub new tip -- des 不能
import java.util.ArrayList; public class Solution { public int[] multiply(int[] A) { int length=A.length; int[] B=new int[A.length]; if(length==0){ return B; } //下三角连乘 B[0]=1; for(int i=1;i<length;i++){ B[i]=B[i-1]*A[i-1]; } //上三角连乘 int temp=1; for(int j=length-2;j>=0;j--){ temp*=A[j+1]; B[j]*=temp; } return B; } }
构建前向乘积数组C[i]=A[0]*A[1]*...*A[i-1],即C[i]=C[i-1]*A[i-1];
构建后向乘积数组D[i]=A[n-1]*A[n-2]*...A[n-i+1],即D[i]=D[i+1]*A[i+1];
通过C[i],D[i]来求B[i]:B[i]=C[i]*D[i]
标签:== 数组 i+1 sub new tip -- des 不能
原文地址:https://www.cnblogs.com/chanaichao/p/10260114.html