除自身以外数组的乘积

除自身以外数组的乘积_第1张图片

双指针解法 

int* productExceptSelf(int* nums, int numsSize, int* returnSize){

    int left = 1;
    int right = 1;

    int *temp = (int*)malloc(sizeof(int)*100000);
    for(int i=0; i<100000; i++)
    {
        temp[i] = 1;
    }
    
    for(int i=0; i

你可能感兴趣的:(C语言,C语言刷题,c语言,经验分享)