leecode第二百三十八题(除自身以外数组的乘积)
Posted cjt-blog
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leecode第二百三十八题(除自身以外数组的乘积)相关的知识,希望对你有一定的参考价值。
class Solution { public: vector<int> productExceptSelf(vector<int>& nums) { int len=nums.size(); vector<int> res; for(int i=0,temp=1;i<len;i++)//把前面的乘起来,暂存起来 { res.push_back(temp); temp=temp*nums[i]; } for(int i=len-1,temp=1;i>=0;i--)//倒着再乘一遍,刚好错开自己位置的数值 { res[i]=res[i]*temp; temp=temp*nums[i]; } return res; } };
分析:
不给说O(n)时间复杂度,O(1)空间复杂度,我还真想不到这么好的。
以上是关于leecode第二百三十八题(除自身以外数组的乘积)的主要内容,如果未能解决你的问题,请参考以下文章