LeetCode知识点总结 - 1991

LeetCode 1991. Find the Middle Index in Array

考点难度
Prefix SumEasy
题目

Given a 0-indexed integer array nums, find the leftmost middleIndex (i.e., the smallest amongst all the possible ones).

A middleIndex is an index where nums[0] + nums[1] + ... + nums[middleIndex-1] == nums[middleIndex+1] + nums[middleIndex+2] + ... + nums[nums.length-1].

If middleIndex == 0, the left side sum is considered to be 0. Similarly, if middleIndex == nums.length - 1, the right side sum is considered to be 0.

Return the leftmost middleIndex that satisfies the condition, or -1 if there is no such index.

思路

因为leftsum = rightsum - nums[i]所以leftsum = (totalsum - leftsum) - nums[i],化简之后得到leftsum * 2 = totalsum - nums[i]

答案
public int findMiddleIndex(int[] nums) {
        int totalSum = 0, leftSum = 0;
        for (int i=0; i<nums.length; i++) totalSum += nums[i];
        for (int i=0; i<nums.length; leftSum+=nums[i++])
            if (leftSum*2 == totalSum-nums[i]) return i;
        return -1;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值