为了账号安全,请及时绑定邮箱和手机立即绑定

Java中的随机加权选择

Java中的随机加权选择

凤凰求蛊 2019-09-21 13:45:04
我想从集合中选择一个随机项目,但是选择任何项目的机会应与相关的权重成比例输入示例:item                weight----                ------sword of misery         10shield of happy          5potion of dying          6triple-edged sword       1因此,如果我有4种可能的物品,那么没有重量的任何一件物品的机会将是四分之一。在这种情况下,用户遭受痛苦之剑的可能性应该是三刃剑的十倍。如何在Java中进行加权随机选择?
查看完整描述

3 回答

?
ibeautiful

TA贡献1993条经验 获得超5个赞

Apache Commons中现在有一个用于此的类:EnumeratedDistribution


Item selectedItem = new EnumeratedDistribution(itemWeights).sample();

这里itemWeights是List<Pair<Item,Double>>,像(假设项目接口阿恩的答案):


List<Pair<Item,Double>> itemWeights = Collections.newArrayList();

for (Item i : itemSet) {

    itemWeights.add(new Pair(i, i.getWeight()));

}

或在Java 8中:


itemSet.stream().map(i -> new Pair(i, i.getWeight())).collect(toList());

注意:Pair这里需要是org.apache.commons.math3.util.Pair,不是org.apache.commons.lang3.tuple.Pair。


查看完整回答
反对 回复 2019-09-21
  • 3 回答
  • 0 关注
  • 482 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信