做题博客链接
https://blog.youkuaiyun.com/qq_43349112/article/details/108542248
题目链接
https://leetcode-cn.com/problems/product-of-array-except-self/
描述
给你一个长度为 n 的整数数组 nums,其中 n > 1,返回输出数组 output ,其中 output[i] 等于 nums 中除
nums[i] 之外其余各元素的乘积。
提示:题目数据保证数组之中任意元素的全部前缀元素和后缀(甚至是整个数组)的乘积都在 32 位整数范围内。
说明: 请不要使用除法,且在 O(n) 时间复杂度内完成此题。
进阶:
你可以在常数空间复杂度内完成这个题目吗?( 出于对空间复杂度分析的目的,输出数组不被视为额外空间。)
示例
输入: [1,2,3,4]
输出: [24,12,8,6]
初始代码模板
class Solution {
public int[] productExceptSelf(int[] nums) {
}
}
代码
class Solution {
public int[] productExceptSelf(int[] nums) {
//作为答案数组,开始的时候保存每个元素右部分的乘积
int[] res = new int[nums.length];
int right = 1;
for (int i = res.length - 1; i >= 0; i--) {
res[i] = right;
right *= nums[i];
}
int left = 1;
for (int i = 0; i < res.length; i++) {
res[i] = res[i] * left;
left *= nums[i];
}
return res;
}
}