当前位置:   article > 正文

Product of Array Except Self 题解

product of array except self

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)。


代码:

  1. class Solution {
  2. public:
  3. vector<int> productExceptSelf(vector<int>& nums) {
  4. vector<int> ans(nums.size(),1);
  5. vector<int> left(nums.size(), 1);
  6. vector<int> right(nums.size(),1);
  7. for(int i=1; i<nums.size(); i++){
  8. left[i]=left[i-1]*nums[i-1];
  9. }
  10. for(int i=nums.size()-2; i>=0; i--){
  11. right[i]=right[i+1]*nums[i+1];
  12. }
  13. for(int i=0; i<nums.size(); i++){
  14. ans[i]=left[i]*right[i];
  15. }
  16. return ans;
  17. }
  18. };





声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/代码探险家/article/detail/857486
推荐阅读
相关标签
  

闽ICP备14008679号