線段樹 區域和檢索 - 數組不可變(領釦)

class NumArray { private int[] sums; public NumArray(int[] nums) { sums = new int[nums.length]; if (nums.length == 0) { return; } sums[0] = nums[0];
相關文章
相關標籤/搜索