724. 寻找数组的中心下标前缀和

Posted 幽殇默

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了724. 寻找数组的中心下标前缀和相关的知识,希望对你有一定的参考价值。

https://leetcode-cn.com/problems/find-pivot-index/

class Solution {
public:
    int pivotIndex(vector<int>& nums) {
        int n=nums.size();
        vector<int>ve; 
        int s=0; ve.push_back(0);
        for(int i=0;i<nums.size();i++)
        {
            s+=nums[i];
            ve.push_back(s);
        }
        for(int i=1;i<ve.size();i++)
        {
            int l=ve[i-1];
            int r=ve[ve.size()-1]-ve[i];
            if(l==r) return i-1;
        }
        return -1;
    }
};

以上是关于724. 寻找数组的中心下标前缀和的主要内容,如果未能解决你的问题,请参考以下文章

力扣 724. 寻找数组的中心下标 --python

2021.5.19

leetcode刷题48.寻找数组的中心下标——Java版

LeetCode724 寻找数组的中心索引

数组724. 寻找数组的中心索引

1.LeetCode刷题-寻找数组的中心索引