0724. Find Pivot Index

0724. Find Pivot Index #

题目 #

  • 给定整数数组 nums ,计算数组的 中心下标
  • 数组 中心下标 是数组的一个下标,其左侧所有元素相加的和等于右侧所有元素相加的和。
  • 如果中心下标位于数组最左端,那么左侧数之和视为 0 ,因为在下标的左侧不存在元素。这一点对于中心下标位于数组最右端同样适用。
  • 如果数组有多个中心下标,应该返回 最靠近左边 的那一个。如果数组不存在中心下标,返回 -1

思路 #

前缀和 #

代码 #

前缀和 #

class Solution {
    public int pivotIndex(int[] nums) {
        int total = 0;
        for (int num: nums) total += num;
        
        int prefix = 0;
        for (int i = 0; i < nums.length; i++) {
            if (prefix == total - prefix - nums[i]) return i;
            prefix += nums[i];
        }
        
        return -1;
    }
}