c_cpp 获取一系列数字,并将每个项目替换为数组中所有其他项目的产品

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 获取一系列数字,并将每个项目替换为数组中所有其他项目的产品相关的知识,希望对你有一定的参考价值。

#define ARRAY_MAX 30

// forget to consider integer overflow

void product_of_all_other_items_in_array(int A[], int N) {
    int aux1[ARRAY_MAX], aux2[ARRAY_MAX];
    
    aux1[0] = 1;
    for(int i=1; i<N; i++)
        aux1[i] = aux1[i-1] * A[i-1];
    
    aux2[N-1] = 1;
    for(int i=N-2; i>=0; i--)
        aux2[i] = aux2[i+1] * A[i+1]; // gist, should be A[i+1] not A[i-1]
        
    for(int i=0; i<N; i++) 
        A[i] = aux1[i] * aux2[i];
}

// solution 2, use less space
  vector<int> productExceptSelf(vector<int>& nums) {
        vector<int> res(nums.size(), 1);
        for (int i = 1; i < nums.size(); ++i) {
            res[i] = res[i - 1] * nums[i - 1];
        }
        int right = 1;
        for (int i = nums.size() - 1; i >= 0; --i) {
            res[i] *= right;
            right *= nums[i];
        }
        return res;
    }

以上是关于c_cpp 获取一系列数字,并将每个项目替换为数组中所有其他项目的产品的主要内容,如果未能解决你的问题,请参考以下文章

从文件中获取不同类型的项目并将它们添加到数组中

Vertica:将字符串拆分为数组并将其分组以获取一组唯一值?

将给定数组中的所有零移动到末尾,并将每个非零元素替换为最接近的较大值(如果有)

从表中的一系列数字中获取范围并将所有范围存储在 PLSQL/Oracle Forms 中的字符串变量中

c_cpp 根据空间拆分字符串并将每个标记转换为大写。

c_cpp 根据空间拆分字符串并将每个标记转换为大写。