303. Range Sum Query - Immutable 数组
Given an integer array nums, find the sum of the elements between indices i and j (i ≤ j), inclusive.ide
Example:
spa
Given nums = [-2, 0, 3, -5, 2, -1] sumRange(0, 2) -> 1 sumRange(2, 5) -> -1 sumRange(0, 5) -> -3
Note:
orm
You may assume that the array does not change.element
There are many calls to sumRange function.it
题目大意:求数组一个连续子集的和。io
思路:table
1.能够直接找到数组子集的起始位置,连续相加到终止位置,function
就能够获得答案。这样的话,没计算一次都要连续相加,比较麻烦。因此想到下面的思路。class
2.用一个数组来存放当前元素的以前元素的和。
例如:
vector<int> source,源数组
vector<int> preITotal,用来存放source前i个元素的和,包括第i个元素。
之后每次计算范围源数组[i,j]范围子集的和,preITotal[j] - preITotal[i-1].计算便可。
代码以下:
class NumArray { private: vector<int> preITotal;//存放前i个元素的和 public: NumArray(vector<int> &nums) { if(nums.empty()) return; preITotal.push_back(nums[0]); for(int i = 1; i < nums.size(); ++i) preITotal.push_back(preITotal[i-1] + nums[i]); } int sumRange(int i, int j) { if(0 == i) return preITotal[j]; return preITotal[j] - preITotal[i - 1]; } }; // Your NumArray object will be instantiated and called as such: // NumArray numArray(nums); // numArray.sumRange(0, 1); // numArray.sumRange(1, 2);
总结:
题目标注为动态规划,开始怎么也想不出哪里用到动态规划的思想了。当把当前的结果记录下来,之后使用这一点,和动态规划挂钩了。
2016-08-31 22:42:39