java 加权平均,使用Java 8流计算加权平均值

本文介绍了如何使用Java 8的Stream API来计算一个Map中键值对的加权平均值。Map的值作为权重,键作为要平均的数值。通过自定义一个Collector,实现了在收集过程中累加分子和分母,并最终返回加权平均值的计算方法。
摘要由CSDN通过智能技术生成

How do I go about calculating weighted mean of a Map where the Integer value is the weight for the Double value to be averaged.

eg: Map has following elements:

(0.7, 100) // value is 0.7 and weight is 100

(0.5, 200)

(0.3, 300)

(0.0, 400)

I am looking to apply the following formula using Java 8 streams, but unsure how to calculate the numerator and denominator together and preserve it at the same time. How to use reduction here?

YM946.png

解决方案

You can create your own collector for this task:

static Collector averagingWeighted(ToDoubleFunction valueFunction, ToIntFunction weightFunction) {

class Box {

double num = 0;

long denom = 0;

}

return Collector.of(

Box::new,

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值