首页 > 其他 > 详细

303. Range Sum Query - Immutable

时间:2016-01-21 18:56:23      阅读:248      评论: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:
You may assume that the array does not change.
There are many calls to sumRange function.

  

public class NumArray {
	private static int[] nums;
	private static int[] sums;
    public NumArray(int[] nums) {
        if(nums==null)
			return ;
		this.nums = nums;
		sums=new int[nums.length];//注意为什么不nums=sums,这样的话跟着变,这样的话原始数组也会变,这样不科学
		if (nums.length == 1) {
			sums[0] = nums[0];
			return;
		}
		for (int x = 1; x < nums.length; x++) {
			sums[x] = sums[x - 1] + nums[x];
		}
    }

    public int sumRange(int i, int j) {
        return sums[j]-sums[i]+nums[i];
    }
}


// Your NumArray object will be instantiated and called as such:
// NumArray numArray = new NumArray(nums);
// numArray.sumRange(0, 1);
// numArray.sumRange(1, 2);

  

303. Range Sum Query - Immutable

原文:http://www.cnblogs.com/kydnn/p/5148626.html

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