权重随机算法Java实现

权重随机算法在抽奖,资源调度等系统中应用还是比较广泛的,一个简单的按照权重来随机的实现,权重为几个随机对象(分类)的命中的比例,权重设置越高命中越容易,之和可以不等于100;

简单实现代码如下:

?

importjava.util.ArrayList;  
importjava.util.List;  
importjava.util.Random;  
   
publicclass WeightRandom {  
    staticList<WeightCategory>  categorys = newArrayList<WeightCategory>();  
    privatestatic Random random = newRandom();  
       
    publicstatic void initData() {  
        WeightCategory wc1 = newWeightCategory("A",60); 
        WeightCategory wc2 = newWeightCategory("B",20); 
        WeightCategory wc3 = newWeightCategory("C",20); 
        categorys.add(wc1); 
        categorys.add(wc2); 
        categorys.add(wc3); 
    } 
   
    publicstatic void main(String[] args) {  
          initData(); 
          Integer weightSum = 0; 
          for(WeightCategory wc : categorys) {  
              weightSum += wc.getWeight();  
          } 
   
          if(weightSum <= 0) {  
           System.err.println("Error: weightSum=" + weightSum.toString());  
           return; 
          } 
          Integer n = random.nextInt(weightSum); // n in [0, weightSum)  
          Integer m = 0; 
          for(WeightCategory wc : categorys) {  
               if(m <= n && n < m + wc.getWeight()) {  
                 System.out.println("This Random Category is "+wc.getCategory()); 
                 break; 
               } 
               m += wc.getWeight();  
          } 
   
             
    } 
   
} 
   
classWeightCategory {  
    privateString category;  
    privateInteger weight;  
       
   
    publicWeightCategory() {  
        super(); 
    } 
   
    publicWeightCategory(String category, Integer weight) {  
        super(); 
        this.setCategory(category); 
        this.setWeight(weight); 
    } 
   
   
    publicInteger getWeight() {  
        returnweight;  
    } 
   
    publicvoid setWeight(Integer weight) {  
        this.weight = weight;  
    } 
   
    publicString getCategory() {  
        returncategory;  
    } 
   
    publicvoid setCategory(String category) {  
        this.category = category;  
    } 
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值