• 724. Find Pivot Index


    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.
    

    Examlple 2:

    Input: 
    nums = [1, 2, 3]
    Output: -1
    Explanation: 
    There is no index that satisfies the conditions in the problem statement.
    

    给定一个数组,找出一个数,左边元素之和等于右边元素之和,存在范围其index,反之-1
    假定存在这个数,满足:

    • 1.left + nums[i] + right = sum
    • 2.left = right
    • 3.sum - 2 * left = nums[i]
        public int pivotIndex(int[] nums) {
            int sum = 0;
            for(int num:nums)
                sum += num;
            int left=0;
            for(int i = 0; i < nums.length; i++)
            {  if (i != 0)
                    left += nums[i-1]; //确保是在‘pivot’的左侧
                if(sum - 2 * left == nums[i]) return i;
            }
            return -1;
        }
    
  • 相关阅读:
    大二上每日总结
    大二上每日总结
    大二上每日总结
    大二上每日总结
    大二上每日总结
    大二上每日总结
    MyBatis(八)MyBatis逆向工程
    MyBatis(七)SSM 整合:MyBatisSpringSpringMVC 整合
    MyBatis(九)工作原理 之 框架分层架构
    Interesting Finds: 2008.06.01
  • 原文地址:https://www.cnblogs.com/wxshi/p/7871610.html
Copyright © 2020-2023  润新知