除自身以外数组的乘积
Posted Alice_yufeng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了除自身以外数组的乘积相关的知识,希望对你有一定的参考价值。
class Solution
public int[] productExceptSelf(int[] nums)
int length = nums.length;
// L 和 R 分别表示左右两侧的乘积列表
int[] L = new int[length];
int[] R = new int[length];
int[] answer = new int[length];
// L[i] 为索引 i 左侧所有元素的乘积
// 对于索引为 '0' 的元素,因为左侧没有元素,所以 L[0] = 1
L[0] = 1;
for (int i = 1; i < length; i++)
L[i] = nums[i - 1] * L[i - 1];
// R[i] 为索引 i 右侧所有元素的乘积
// 对于索引为 'length-1' 的元素,因为右侧没有元素,所以 R[length-1] = 1
R[length - 1] = 1;
for (int i = length - 2; i >= 0; i--)
R[i] = nums[i + 1] * R[i + 1];
// 对于索引 i,除 nums[i] 之外其余各元素的乘积就是左侧所有元素的乘积乘以右侧所有元素的乘积
for (int i = 0; i < length; i++)
answer[i] = L[i] * R[i];
return answer;
以上是关于除自身以外数组的乘积的主要内容,如果未能解决你的问题,请参考以下文章