zoukankan      html  css  js  c++  java
  • leetcode 238. 除自身以外数组的乘积

    题目

    给定长度为 n 的整数数组 nums,其中 n > 1,返回输出数组 output ,其中 output[i] 等于 nums 中除 nums[i] 之外其余各元素的乘积。
    示例:
    输入: [1,2,3,4]
    输出: [24,12,8,6]
    说明: 请不要使用除法,且在 O(n) 时间复杂度内完成此题。
    进阶:
    你可以在常数空间复杂度内完成这个题目吗?( 出于对空间复杂度分析的目的,输出数组不被视为额外空间。)
     

    C++代码

    class Solution {
    public:
        vector<int> productExceptSelf(vector<int>& nums) {
            int n = nums.size();
            vector<int> res(n);
            res[n-1] = nums[n-1];
            for(int i=n-2; i>0; i--)
                res[i] = nums[i] * res[i+1];
            int tmp = 1;
            for(int i=0; i<n-1; i++)
            {
                res[i] = tmp * res[i+1];
                tmp *= nums[i];
            }
            res[n-1] = tmp;
            return res;
        }
    };
  • 相关阅读:
    51nod1278 相离的圆
    CodeForces
    SPOJ
    51nod 1040(欧拉函数)
    51nod1009 51nod1042(数位dp)
    51nod1264 线段相交
    51nod1050 循环数组最大子段和
    Spark SQL UDF示例
    Spark SQL官网阅读笔记
    Spark RDD
  • 原文地址:https://www.cnblogs.com/xumaomao/p/11364621.html
Copyright © 2011-2022 走看看