首页 > 编程语言 > 详细

303. Range Sum Query - Immutable(数组区间和)

时间:2019-03-13 00:40:52      阅读:233      评论:0      收藏:0      [点我收藏+]

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.

 

求区间 i ~ j 的和,可以转换为 sum[j + 1] - sum[i],其中 sum[i] 为 0 ~ i - 1 的和。

时间复杂度:o(n)                  空间复杂度:o(n)

技术分享图片

 

303. Range Sum Query - Immutable(数组区间和)

原文:https://www.cnblogs.com/shaer/p/10520495.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!