【leetcode】所有奇数长度子数组的和

2021-03-19 12:26

阅读:376

标签:奇数   div   span   bar   mod   int   class   数组   arrays   

 

int sumOddLengthSubarrays(int* arr, int arrSize){
    int i,j,cnt,sum,total=0;
    for(i=0; i)
    {
        cnt=0;
        sum=0;
        for(j=i; j)
        {
            cnt++;
            sum+=arr[j];
            if(cnt%2)
                total+=sum;
        }
    }
    return total;
}

 

【leetcode】所有奇数长度子数组的和

标签:奇数   div   span   bar   mod   int   class   数组   arrays   

原文地址:https://www.cnblogs.com/ganxiang/p/13942875.html


评论


亲,登录后才可以留言!