是否有内置方法来计算整数ArrayList的平均值?
如果没有,我可以通过获取ArrayList的名称并返回其平均值来创建一个能够做到这一点的函数吗?
答案 0 :(得分:9)
这很简单:
// Better use a `List`. It is more generic and it also receives an `ArrayList`.
public static double average(List<Integer> list) {
// 'average' is undefined if there are no elements in the list.
if (list == null || list.isEmpty())
return 0.0;
// Calculate the summation of the elements in the list
long sum = 0;
int n = list.size();
// Iterating manually is faster than using an enhanced for loop.
for (int i = 0; i < n; i++)
sum += list.get(i);
// We don't want to perform an integer division, so the cast is mandatory.
return ((double) sum) / n;
}
要获得更好的效果,请使用int[]
代替ArrayList<Integer>
。
答案 1 :(得分:2)
如果你想比计算机稍晚一点,我建议在CERN开发的Colt库,它支持许多统计功能。请参阅BinFunctions1D和DoubleMatrix1D。 替代方案(具有最近的代码基础)可以是commons-math:
DescriptiveStatistics stats = new DescriptiveStatistics();
for( int i = 0; i < inputArray.length; i++)
{
stats.addValue(inputArray[i]);
}
double mean = stats.getMean();
答案 2 :(得分:2)
即将推出,使用JDK 8中的lambda表达式和方法引用:
DoubleOperator summation = (a, b) -> a + b;
double average = data.mapReduce(Double::valueOf, 0.0, summation) / data.size();
System.out.println("Avergage : " + average);
答案 3 :(得分:1)
不,没有。您可以简单地遍历完整列表以添加所有数字,并简单地将总和除以数组列表的长度。
答案 4 :(得分:0)
您可以使用'mean'库中的Apache Commons。