leetcode_238. Product of Array Except Self_思维
Posted Jason333
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode_238. Product of Array Except Self_思维相关的知识,希望对你有一定的参考价值。
https://leetcode.com/problems/product-of-array-except-self/
给一个vector<int> nums,输出一个vector<int> res,res[i]为nums中除去nums[i]以外所有数的乘积。且不能使用除法运算,时间复杂度为O(n),空间复杂度尽量小。
思路:首先从左往右遍历,对任意i,可以求得nums[0,i-1]的乘积;再从右往左遍历,对任意i,可以求得nums[i+1,n-1]的乘积。根据题意,只需要额外需要O(1)的空间复杂度。
class Solution { public: vector<int> productExceptSelf(vector<int>& nums) { int len = nums.size(); vector<int> res = nums; res[0]=1; cout<<res[0]<<endl; for(int i=1; i<len; i++) res[i] = res[i-1] * nums[i-1]; int tmp = 1; for(int i=len-1; i>=0; i--) { res[i] = res[i]*tmp; tmp *= nums[i]; } return res; } };
以上是关于leetcode_238. Product of Array Except Self_思维的主要内容,如果未能解决你的问题,请参考以下文章
leetcode:238. Product of Array Except Self(Java)解答
Leetcode 238. Product of Array Except Self
[LeetCode] 238. Product of Array Except Self
238. [LeetCode] Product of Array Except Self