首页 > 学院 > 开发设计 > 正文

Product of Array Except Self 题解

2019-11-06 06:15:41
字体:
来源:转载
供稿:网友

238. PRoduct of Array Except Self

题目描述:

Given an array of n integers where n > 1, nums, return an array output such that output[i] is equal to the product of all the elements of nums except nums[i].

Solve it without division and in O(n).

For example, given [1,2,3,4], return [24,12,8,6].

题目链接:238. Product of Array Except Self

算法描述:

    根据题意,给出一个数组,我们将返回一个结果数组,该结果数组中第 i 个元素的值为除去第 i 个元素的所有其它元素之积。题目要求复杂度控制在 O(n),并且不能用除法。

解决思路:因为第 i 个位置上的值等于 i 位置左边所有元素乘积与 i 位置右边所有元素乘积的乘积,因此,我们创建容器 vector<int> left  和 vector<int> right,用它们来存储左边元素乘积与右边元素乘积,如:第 i 个元素左边乘积为:left[i]=left[i-1]*nums[i-1] ,右边元素乘积为:right[i]=right[i+1]*nums[i+1]。因此,我们可以用两个 for 循环完成此次遍历,最后返回结果  ans[i]=left[i]*right[i]。算法复杂度控制在O(n)。

代码:

class Solution {public:    vector<int> productExceptSelf(vector<int>& nums) {        vector<int> ans(nums.size(),1);        vector<int> left(nums.size(), 1);        vector<int> right(nums.size(),1);                for(int i=1; i<nums.size(); i++){            left[i]=left[i-1]*nums[i-1];        }        for(int i=nums.size()-2; i>=0; i--){            right[i]=right[i+1]*nums[i+1];        }        for(int i=0; i<nums.size(); i++){            ans[i]=left[i]*right[i];        }                return ans;    }};


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表