c_cpp leetcode_238.cpp

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp leetcode_238.cpp相关的知识,希望对你有一定的参考价值。

vector<int> productExceptSelf(vector<int>& nums) {
        
        vector<int> res(nums.size(),1);
        int r=1;//maintain diff right product because ret[i] is not 1 but has a prev value;
        for(int i=1;i<nums.size();i++)
        	res[i]=res[i-1]*nums[i-1];
        for (int i = nums.size()-2; i >=0 ; --i)
            r*=nums[i+1],res[i]*=r;
        
        return res;
    }

以上是关于c_cpp leetcode_238.cpp的主要内容,如果未能解决你的问题,请参考以下文章

c_cpp LeetCode - 等式方程的可满足性

c_cpp super_ugly_leetcode.cpp

c_cpp 糖果http://oj.leetcode.com/problems/candy/

c_cpp 添加Binaryhttp://oj.leetcode.com/problems/add-binary/

c_cpp Path Sum http://oj.leetcode.com/problems/path-sum/

c_cpp 设置Matrix Zeroeshttp://oj.leetcode.com/problems/set-matrix-zeroes/