【leetcode】238 除自身以外数组的乘积(数组)

题目链接:https://leetcode-cn.com/problems/product-of-array-except-self/

题目描述

给定长度为 n 的整数数组 nums,其中 n > 1,返回输出数组 output ,其中 output[i] 等于 nums 中除 nums[i] 之外其余各元素的乘积。

示例:

输入: [1,2,3,4]
输出: [24,12,8,6]
说明:不要使用除法,且在 O(n) 时间复杂度内完成此题。

进阶:
你可以在常数空间复杂度内完成这个题目吗?( 出于对空间复杂度分析的目的,输出数组不被视为额外空间。)

思路

不使用除法。将每个元素除自身的乘积分为 从左往右的乘积 * 从右往左的乘积;2次遍历得到。
时间复杂度:O(n)
空间复杂度:O(1)

代码

class Solution {
public:
    vector<int> productExceptSelf(vector<int>& nums) {
        vector<int> ret(nums.size(),0);
        ret[0] = 1;
        for(int i = 1; i < nums.size(); ++i){
            ret[i] = ret[i-1] * nums[i-1];    // 从左往右累乘数组(不包含本元素)
        }
        int tmp = 1;                          // 从右往左的累乘结果(不包含本元素)
        for(int i = nums.size()-1; i>=0; --i){
            ret[i] = ret[i] * tmp;            // 累乘(不包含本元素)
            tmp *= nums[i];
        }
        return ret;
    }
};

【leetcode】238 除自身以外数组的乘积(数组)_第1张图片

你可能感兴趣的:(LeetCode)