【Leetcode】Range Sum Query - Immutable

这是一个关于LeetCode上‘不可变范围求和’问题的解析。给定一个整数数组nums,需要实现一个NumArray类,该类有一个方法sumRange(i, j),返回数组从索引i到j(包括i和j)的元素之和。示例中展示了如何通过预处理数组来高效地回答多次查询。" 120753623,11525240,KMeans算法实现与学习笔记,"['机器学习', '数据挖掘', 'Python编程', '算法实现', '数据科学']
摘要由CSDN通过智能技术生成

题目链接:https://leetcode.com/problems/range-sum-query-immutable/
题目:

Given an integer array nums, find the sum of the elements between indices i and j (i ≤ j), inclusive.

Example:

Given nums = [-2, 0, 3, -5, 2, -1]

sumRange(0, 2) -> 1
sumRange(2, 5) -> -1
sumRange(0, 5) -> -3

Note:

  1. You may assume that the array does not change.
  2. There are many calls to sumRange function.
算法:
[java]  view plain  copy
  在CODE上查看代码片 派生到我的代码片
  1. public class NumArray {  
  2.     int nums[];  
  3.     int sums[];  
  4.   
  5.     public NumArray(int[] nums) {  
  6.         this.nums = nums;  
  7.         if (nums != null && nums.length != 0) {  
  8.             this.sums = new int[nums.length];  
  9.             sums[0] = nums[0];  
  10.             for (int i = 1; i < sums.length; i++) {  
  11.                 sums[i] = sums[i - 1] + nums[i];  
  12.             }  
  13.         }  
  14.     }  
  15.   
  16.     public int sumRange(int i, int j) {  
  17.         int sum = sums[j] - sums[i] + nums[i];  
  18.         return sum;  
  19.     }  
  20. }  
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值