50.数组剔除元素后的乘积

描述

给定一个整数数组A。

定义B[i] = A[0] * ... * A[i-1] * A[i+1] * ... * A[n-1], 计算B的时候请不要使用除法。

您在真实的面试中是否遇到过这个题?  

样例

给出A=[1, 2, 3],返回 B为[6, 3, 2] 

没什么难度:

class Solution {
public:
    /*
     * @param nums: Given an integers array A
     * @return: A long long array B and B[i]= A[0] * ... * A[i-1] * A[i+1] * ... * A[n-1]
     */
    vector productExcludeItself(vector &nums) {
        // write your code here
        vector vec;
        for (int i=0;i

你可能感兴趣的:(刷题)