leetcode_307.Range Sum Query

来源:互联网 发布:qt淘宝互刷平台2017 编辑:程序博客网 时间:2024/05/21 02:48

节日快乐,老铁们~ 程序员是最可爱的人。
Range Sum Query - Mutable

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

The update(i, val) function modifies nums by updating the element at index i to val.
Example:
Given nums = [1, 3, 5]

sumRange(0, 2) -> 9
update(1, 2)
sumRange(0, 2) -> 8
Note:
The array is only modifiable by the update function.
You may assume the number of calls to update and sumRange function is distributed evenly.

提示:提交代码后,需要用简洁的语言解释一下代码思路~ 谢谢

历史题目和总结见公众号「每日一道算法题」

https://leetcode.com/problems/range-sum-query-mutable/description/

思路

原创粉丝点击