724. 寻找数组的中心索引

给定一个整数类型的数组 nums,请编写一个能够返回数组“中心索引”的方法。

我们是这样定义数组中心索引的:数组中心索引的左侧所有元素相加的和等于右侧所有元素相加的和。

如果数组不存在中心索引,那么我们应该返回 -1。如果数组有多个中心索引,那么我们应该返回最靠近左边的那一个。

示例 1:

输入: 
nums = [1, 7, 3, 6, 5, 6]
输出: 3
解释: 
索引3 (nums[3] = 6) 的左侧数之和(1 + 7 + 3 = 11),与右侧数之和(5 + 6 = 11)相等。
同时, 3 也是第一个符合要求的中心索引。

示例 2:

输入: 
nums = [1, 2, 3]
输出: -1
解释: 
数组中不存在满足此条件的中心索引。

说明:

  • nums 的长度范围为 [0, 10000]
  • 任何一个 nums[i] 将会是一个范围在 [-1000, 1000]的整数。
class Solution:
    def pivotIndex(self, nums: 'List[int]') -> 'int':
        for i in range(len(nums)):
            if sum(nums[0:i]) == sum(nums[i+1:len(nums)]): return i
        return -1
    #加和 优化
    def pivotIndex2(self, nums: 'List[int]') -> 'int':
        Sum = sum(nums)
        curSum = 0
        for i in range(len(nums)):
            if Sum - nums[i] == 2 * curSum: return i
            curSum += nums[i]
        return -1
    def pivotIndex3(self, nums: 'List[int]') -> 'int':
        Sum = sum(nums)
        curSum = 0
        for i, num in enumerate(nums):
            if curSum * 2 == Sum - num:
                return i
            curSum += num
        return -1
if __name__=='__main__':
    s = Solution()
    test = ([1, 2, 3],[1,2,4,-3,6],[1, 7, 3, 6, 5, 6],[1,2,3,4,5,6],[-1, -1, -1, -1, -1, 0],[-1, -1, -1, -1, 0, -1],[-1, -1, -1, -1, 1, -1],[-1,-1,-1,-1,1,0])
    for nums in test:
        print(s.pivotIndex3(nums),end=' ')

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值