寻找数组的中心索引

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

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

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

示例 1:

输入:
nums = [1, 7, 3, 6, 5, 6]
输出: 3

[-1,-1,-1,0,1,1]
输出: 0

[-1,-1,1,0,1,0]
输出:5

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

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

public class CenterIndexTest {
    public static void main(String[] args) {
        int[] nums = {-1, -1, 0, 1, 1, 0};
        System.out.println(findCenterIndex(nums));

    }

    private static int findCenterIndex(int[] nums) {
        if (nums == null) {
            return -1;
        } else {
            for (int i = 0; i < nums.length; i++) {
                // 处理[-1,-1,-1,0,1,1]和[-1,-1,1,0,1,0]的情况
                if ((i == 0 && sumArray(Arrays.copyOfRange(nums, i + 1, nums.length)) == 0) ||
                        (i == nums.length - 1 && sumArray(Arrays.copyOfRange(nums, 0, i)) == 0)) {
                    return i;
                }

                if (i >= 1 && i < nums.length - 1) {
                    if (sumArray(Arrays.copyOfRange(nums, 0, i)) == sumArray(Arrays.copyOfRange(nums, i + 1, nums.length))) {
                        return i;
                    }
                }
            }
            return -1;
        }
    }

    private static int sumArray(int[] arr) {
        int sum = 0;
        for (int i : arr) {
            sum += i;
        }
        return sum;
    }


}
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值