博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
724. Find Pivot Index
阅读量:2351 次
发布时间:2019-05-10

本文共 1387 字,大约阅读时间需要 4 分钟。

题目

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.

Example 1:

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.

我的想法

用双指针,哪边的和小就移动哪边的指针。但是如果输入为负数呢???

class Solution {
//记录一下错误做法 public int pivotIndex(int[] nums) {
if(nums == null || nums.length <= 1) return -1; int l = 0, r = nums.length-1; int sumL = nums[l], sumR = nums[r]; while(r - l > 2){
if(sumL > sumR){
r--; sumR += nums[r]; } else{
l++; sumL += nums[l]; } } if(sumL == sumR) return l+1; else return -1; }}

解答

只用一个指针,将sum分成两半,如果左右两半的和不相同则移动指针

Leetcode solution 1:Prefix Sum

class Solution {
public int pivotIndex(int[] nums) {
if(nums == null || nums.length <= 1) return -1; int leftsum = 0, sum = 0; for(int i = 0; i

转载地址:http://cfqvb.baihongyu.com/

你可能感兴趣的文章
Java基础面试总结
查看>>
HashMap遍历几种方式比较(传统的Map迭代方式对比JDK8的迭代方式)
查看>>
Java面试& HashMap实现原理分析
查看>>
PS修改动图字幕
查看>>
八大基础排序总结
查看>>
Linux下安装使用FastDFS
查看>>
后台管理系统之品牌管理
查看>>
后台管理系统之商品规格管理
查看>>
后台管理系统之商品管理
查看>>
商品详情及Thymeleaf静态化
查看>>
如何安装最纯净的Windows系统,玩转重装操作系统
查看>>
RabbitMQ安装使用及数据同步
查看>>
用户中心
查看>>
授权中心
查看>>
乐优商城—购物车
查看>>
乐优商城—订单微服务
查看>>
《剑指offer》思路与实现总结--Java
查看>>
字符串数组转成矩阵
查看>>
VC++ UDP转TCP互发数据 UDP为服务端 TCP为客户端 可修改IP和端口最小化 2TCP/UDP中转
查看>>
仿养生网 帝国CMS 更新后域名栏目链接一直没变 解决方法:在后台地图--模板标签替换里直接全部替换
查看>>