[leetcode] 724. Find Pivot Index

网友投稿 824 2022-10-02

[leetcode] 724. Find Pivot Index

[leetcode] 724. Find Pivot Index

Description

Given an array of integers nums, write a method that returns the “pivot” index of this array.

We define the pivot index as the index where the sum of the numbers to the left of the index is equal to the sum of the numbers to the right of the index.

If no such index exists, we should return -1. If there are multiple pivot indexes, you should return the left-most pivot index.

Example 1:

Input: nums = [1, 7, 3, 6, 5, 6]Output: 3Explanation: The sum of the numbers to the left of index 3 (nums[3] = 6) is equal to the sum of numbers to the right of index 3.Also, 3 is the first index where this occurs.

Example 2:

Input: nums = [1, 2, 3]Output: -1Explanation: There is no index that satisfies the conditions in the problem statement.

Note:

The length of nums will be in the range [0, 10000].Each element nums[i] will be an integer in the range [-1000, 1000].

分析

题目的意思是:给出一个数组,返回pivot的索引,pivot定义为以pivot为分割点,左右两边的值求和相等。

先对数组进行求和,然后我们遍历一遍,对每个遍历的值累加,当累加到是总和的一半的时候,判断是否是pivot,是的话就返回;不是的话就继续遍历。

代码

class Solution {public: int pivotIndex(vector& nums) { int sum=accumulate(nums.begin(),nums.end(),0); int curSum=0; int n=nums.size(); for(int i=0;i

参考文献

​​[LeetCode] Find Pivot Index 寻找中枢点​​

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:微信拍了拍怎么玩?(微信上拍了拍怎么玩)
下一篇:Bean Searcher配合SpringBoot的使用详解
相关文章

 发表评论

暂时没有评论,来抢沙发吧~