Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

寻找数组的中心索引 #101

Open
yankewei opened this issue Jan 28, 2021 · 1 comment
Open

寻找数组的中心索引 #101

yankewei opened this issue Jan 28, 2021 · 1 comment
Labels
前缀和 题目包含前缀和解法 数组 题目类型为数组 简单 题目难度为简单

Comments

@yankewei
Copy link
Owner

给定一个整数类型的数组 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]的整数。

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/find-pivot-index
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

@yankewei yankewei added 简单 题目难度为简单 数组 题目类型为数组 labels Jan 28, 2021
@yankewei
Copy link
Owner Author

简单题就是这么简单,求出数组的总和add,然后设置指针 i 为数组的头,然后开始从头遍历元素,每遍历一个元素,把指针前边的元素相加before,add - before == before,就表示当前指针就是中心索引,记住要从头遍历,因为题目要求靠近左边的那一个

func pivotIndex(nums []int) int {
    before, add :=0, 0
    for i := 0; i < len(nums); i++ {
	add += nums[i]
    }
    for i := 0; i < len(nums); i++ {
	if add - nums[i] == before {
	    return i
	}
	add -= nums[i]
	before += nums[i]
    }
    return -1
}

@yankewei yankewei added the 前缀和 题目包含前缀和解法 label Jan 28, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
前缀和 题目包含前缀和解法 数组 题目类型为数组 简单 题目难度为简单
Projects
None yet
Development

No branches or pull requests

1 participant