我正在研究以下问题:
编写一个方法 runningTotal,它返回一个新的 ArrayIntList,其中包含原始列表的运行总计。换句话说,新列表中的第 i 个值应该存储原始列表中元素 0 到 i 的总和。
我被困在第二种方法(返回)的最后一部分。没有参数的方法。
public class ArrayIntList {
private int[] elementData;
private int size;
}
// when client calls : test = ArrayIntList.runningTotal(test);
// the folowing method works fine
public static ArrayIntList runningTotal(ArrayIntList other) {
other.elementData[0] = other.elementData[0];
for(int i = 1; i < other.size; i++){
other.elementData[i] = other.elementData[i]+ other.elementData[i-1];
}
return other;
}
// when client calls: test = test.runningTotal();
public ArrayIntList runningTotal() {
elementData[0] = elementData[0];
for(int i = 1; i < size; i++){
elementData[i] = elementData[i]+ elementData[i-1];
}
return ??;
}