问题

该文章的最新版本已迁移至个人博客【比特飞】,单击链接 https://www.byteflying.com/archives/3742 访问。

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

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

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

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

输出: 3

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

输入: nums = [1, 2, 3]

输出: -1

解释: 数组中不存在满足此条件的中心索引。

说明:

nums 的长度范围为 [0, 10000]。
任何一个 nums[i] 将会是一个范围在 [-1000, 1000]的整数。


Given an array of integers nums, write a method that returns the "pivot" index of this array.

We define the pivot index as the index where the sum of the numbers to the left of the index is equal to the sum of the numbers to the right of the index.

If no such index exists, we should return -1. If there are multiple pivot indexes, you should return the left-most pivot index.

Input: nums = [1, 7, 3, 6, 5, 6]

Output: 3

Explanation: The sum of the numbers to the left of index 3 (nums[3] = 6) is equal to the sum of numbers to the right of index 3.
Also, 3 is the first index where this occurs.

Input: nums = [1, 2, 3]

Output: -1

Explanation: There is no index that satisfies the conditions in the problem statement.

Note:

The length of nums will be in the range [0, 10000].
Each element nums[i] will be an integer in the range [-1000, 1000].


示例

该文章的最新版本已迁移至个人博客【比特飞】,单击链接 https://www.byteflying.com/archives/3742 访问。

public class Program {public static void Main(string[] args) {int[] nums = null;nums = new int[] { 1, 7, 3, 6, 5, 6 };var res = PivotIndex(nums);Console.WriteLine(res);nums = new int[] { 1, 2, 3 };res = PivotIndex2(nums);Console.WriteLine(res);nums = new int[] { -1, -1, -1, 0, 0, 1, 1 };res = PivotIndex3(nums);Console.WriteLine(res);Console.ReadKey();}private static int PivotIndex(int[] nums) {//暴力解法for(int i = 0; i < nums.Length; i++) {if(ComputerLeft(nums, i) == ComputerRight(nums, i)) {return i;}}return -1;}private static int ComputerLeft(int[] nums, int index) {int sum = 0;for(int i = 0; i < index; i++) {sum += nums[i];}return sum;}private static int ComputerRight(int[] nums, int index) {int sum = 0;for(int i = index + 1; i < nums.Length; i++) {sum += nums[i];}return sum;}private static int PivotIndex2(int[] nums) {//和数组解法,先存下所有之前的数的和再分析if(nums.Length == 0) return -1;int[] sums = new int[nums.Length];sums[0] = nums[0];for(int i = 1; i < nums.Length; i++) {sums[i] = sums[i - 1] + nums[i];}//边界处理if(sums[nums.Length - 1] == sums[0]) return 0;for(int i = 1; i < nums.Length; i++) {//比较之前的和、之前的和是否相等if(sums[i - 1] == sums[nums.Length - 1] - sums[i]) {return i;}}return -1;}private static int PivotIndex3(int[] nums) {//解法和思路同下面注释掉的代码部分int sum = 0;for(int k = 0; k < nums.Length; k++) {sum += nums[k];}int leftSum = 0;int i = 0, j = nums.Length - 1;while(i <= j) {if((sum -= nums[i]) == leftSum) return i;leftSum += nums[i++];}return -1;//int leftSum = 0;//for(int i = 0; i < nums.Length; i++) {//    sum -= nums[i];//    if(leftSum == sum)//        return i;//    leftSum += nums[i];//}//return -1;}}

以上给出3种算法实现,以下是这个案例的输出结果:

该文章的最新版本已迁移至个人博客【比特飞】,单击链接 https://www.byteflying.com/archives/3742 访问。

3
-1
0

分析:

显而易见,PivotIndex的时间复杂度为:  ,PivotIndex2和PivotIndex3的时间复杂度为:  。

C#LeetCode刷题之#724-寻找数组的中心索引( Find Pivot Index)相关推荐

  1. 724. 寻找数组的中心索引

    链接:724. 寻找数组的中心索引 题解:https://leetcode-cn.com/problems/find-pivot-index/solution/xun-zhao-shu-zu-de-z ...

  2. leetcode 724. 寻找数组的中心索引

    给定一个整数类型的数组 nums,请编写一个能够返回数组 "中心索引" 的方法. 我们是这样定义数组 中心索引 的:数组中心索引的左侧所有元素相加的和等于右侧所有元素相加的和. 如 ...

  3. 每日一题:leetcode724.寻找数组的中心索引

    题目描述 题目分析 今天这道题原本很简单,我都没打算写题解,当时用手机看的题目,我想着我三分钟应该能写出来,结果没想到wa了三发... 对待简单题不要轻视,对待难题不要畏难. 今天的主要问题是没有看数 ...

  4. 力扣724.寻找数组的中心索引

    题目描述 给定一个整数类型的数组 nums,请编写一个能够返回数组 "中心索引" 的方法. 我们是这样定义数组 中心索引 的:数组中心索引的左侧所有元素相加的和等于右侧所有元素相加 ...

  5. C#LeetCode刷题之#852-山脉数组的峰顶索引(Peak Index in a Mountain Array)

    问题 该文章的最新版本已迁移至个人博客[比特飞],单击链接 https://www.byteflying.com/archives/4003 访问. 我们把符合下列属性的数组 A 称作山脉: A.le ...

  6. LEETCODE | PYTHON | 724 | 寻找数组的中心下标

    LEETCODE | PYTHON | 724 | 寻找数组的中心下标 1. 题目 给你一个整数数组 nums ,请计算数组的 中心下标 . 数组 中心下标 是数组的一个下标,其左侧所有元素相加的和等 ...

  7. python 寻找数组的中心索引_Leetcode724查找数组Python的中心索引,LeetCode724,寻找,python...

    寻找数组的中心索引 这一次打卡不知道又摸了多久的鱼,周五没做题,周日补上. 题目 给定一个整数类型的数组 nums,请编写一个能够返回数组"中心索引"的方法. 我们是这样定义数组中 ...

  8. python 寻找数组的中心索引_Leetcode724:寻找数组的中心索引(java、python3)

    寻找数组的中心索引 给定一个整数类型的数组 nums,请编写一个能够返回数组"中心索引"的方法. 我们是这样定义数组中心索引的:数组中心索引的左侧所有元素相加的和等于右侧所有元素相 ...

  9. Leetcode刷题 34.在排序数组中查找元素的第一个和最后一个位置

    解法1: class Solution { public:vector<int> searchRange(vector<int>& nums, int target) ...

最新文章

  1. 备战金九银十,阿里P8师兄指导完整攻略(附:学习资料+面试宝典+项目实战笔记)
  2. Linux不能上网ping:unknown host问题怎么解决?
  3. Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko
  4. ruby watir 登陆邮箱
  5. 字符串中最后一个单词长度
  6. task文件服务器无法输入,Win10系统无法启动task scheduler服务的解决方法
  7. WordPress Kyma插件里Connect和disconnect按钮的动态显示逻辑
  8. python规模_python语言计算生态规模有多大?
  9. Enterprise Services (COM+)服务组件开发异常分析
  10. 网络(10)-HTTPS证书申请及配置
  11. ServletContext、ServletConfig(FilterConfig)学习笔记
  12. C程序设计语言现代方法01:C语言概述
  13. nginx基于tcp负载均衡
  14. Windows 2008 R2 SP1 离线安装IE11
  15. 卸载wps后,安装office,图标关联失败
  16. 润雅信息完成B轮融资 大数据平台赋能汽车销售
  17. 媒企农三方共建专属基地 探索助力吉林乡村振兴
  18. 微信公众平台开发(92) 多客服(转)
  19. 学习Java可以从事什么工作?
  20. 在oracle你如何加供应商,cognos特定于供应商的函数如何添加oracle函数

热门文章

  1. selenium报错解决 ElementNotInteractableException,element not interactable
  2. flask-配置的设置-三种配置的实现方法
  3. U盘容量显示错误修正
  4. PhoneGap插件入门(转)
  5. git比较两个分支的文件的差异
  6. CentOS 下安装 Node.js 8.11.3 LTS Version
  7. Oracle-day03 上
  8. fastjson把对象转化成json避免$ref
  9. HTML5文档查看器PrizmDoc发布v13.0,新增文档比较功能
  10. requestAnimationFrame 方法你真的用对了吗?