当前位置:   article > 正文

权重随机算法的java实现

java根据权重显示顺序

一、概述

  平时,经常会遇到权重随机算法,从不同权重的N个元素中随机选择一个,并使得总体选择结果是按照权重分布的。如广告投放、负载均衡等。

  如有4个元素A、B、C、D,权重分别为1、2、3、4,随机结果中A:B:C:D的比例要为1:2:3:4。

  总体思路:累加每个元素的权重A(1)-B(3)-C(6)-D(10),则4个元素的的权重管辖区间分别为[0,1)、[1,3)、[3,6)、[6,10)。然后随机出一个[0,10)之间的随机数。落在哪个区间,则该区间之后的元素即为按权重命中的元素。

  实现方法

利用TreeMap,则构造出的一个树为:
    B(3)
    /      \
        /         \
     A(1)     D(10)
               /
             /
         C(6)

然后,利用treemap.tailMap().firstKey()即可找到目标元素。

当然,也可以利用数组+二分查找来实现。

二、源码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package  com.xxx.utils;
 
import  com.google.common.base.Preconditions;
import  org.apache.commons.math3.util.Pair;
import  org.slf4j.Logger;
import  org.slf4j.LoggerFactory;
 
import  java.util.List;
import  java.util.SortedMap;
import  java.util.TreeMap;
 
 
public  class  WeightRandom<K,V  extends  Number> {
     private  TreeMap<Double, K> weightMap =  new  TreeMap<Double, K>();
     private  static  final  Logger logger = LoggerFactory.getLogger(WeightRandom. class );
 
     public  WeightRandom(List<Pair<K, V>> list) {
         Preconditions.checkNotNull(list,  "list can NOT be null!" );
         for  (Pair<K, V> pair : list) {
             double  lastWeight =  this .weightMap.size() ==  0  0  this .weightMap.lastKey().doubleValue(); //统一转为double
             this .weightMap.put(pair.getValue().doubleValue() + lastWeight, pair.getKey()); //权重累加
         }
     }
 
     public  K random() {
         double  randomWeight =  this .weightMap.lastKey() * Math.random();
         SortedMap<Double, K> tailMap =  this .weightMap.tailMap(randomWeight,  false );
         return  this .weightMap.get(tailMap.firstKey());
     }
 
}

  

  

三、性能

4个元素A、B、C、D,其权重分别为1、2、3、4,运行1亿次,结果如下:

元素命中次数误差率
A100042960.0430%
B199911320.0443%
C300008820.0029%
D400036900.0092%

从结果,可以看出,准确率在99.95%以上。

 
 
 
 

现在app就是雨后春笋,嗖嗖的往外冒啊,有经验的、没经验的、有资历的、没资历的都想着创业,创业的90%以上都要做一个app出来,好像成了创业的标配。

做了app就得推广啊,怎么推,发券送钱是最多用的被不可少的了,现在好多产品或者运营都要求能够随机出优惠券的金额,但是呢又不能过于随机,送出去的券都是钱吗,投资人的钱,是吧。

所以,在随机生成的金额中就要求,小额度的几率要大,大额度的几率要小,比如说3元的70%,5块的25%,10块的5%,这个样子的概率去生成优惠券,这个怎么办呢?

对于上述的问题,直接用我们的Random.next(Integer range);就不够了。因为这个伪随机不带权重,3,5,10出现的概率都是一样的。

实现思路

还是拿上述的例子,3出现的概率是70%,我们给他的权重赋值为70,5出现的概率为25%,我们给他的权重赋值为25,10出现的概率为5%,我们给他的权重赋值为5.

我们按照顺序计算出权重的加和,把当前数字出现的权重加和前的值作为其权重范围的起点值,把加和后的值作为其权重范围的终点值。

这里写图片描述

这样的话,我们就可以使用Random.next(100)来做随机数,然后判断随机数落在的范围,然后映射到对应的优惠券数值即可。

java实现

  1. package com.nggirl.test.weight.random;
  2. import java.util.ArrayList;
  3. import java.util.HashMap;
  4. import java.util.List;
  5. import java.util.Random; public class WeightRandom { public static void main(String[] args){ WeightRandom wr = new WeightRandom(); wr.initWeight(new String[]{"1","2","3","4"}, new Integer[]{100,100,200,600}); Random r = new Random(); for(int i = 0; i < 10; i++){ Integer rv = r.nextInt(wr.getMaxRandomValue()); System.out.println(rv); System.out.println(wr.getElementByRandomValue(rv).getKey() + " " + rv); } HashMap<String, Integer> keyCount = new HashMap<String, Integer>(); keyCount.put("1", 0); keyCount.put("2", 0); keyCount.put("3", 0); keyCount.put("4", 0); for(int i = 0; i < 10000; i++){ Integer rv = r.nextInt(wr.getMaxRandomValue()); String key = wr.getElementByRandomValue(rv).getKey(); keyCount.put(key, keyCount.get(key).intValue()+1); } System.out.println(""); } private List<WeightElement> weightElements; public void initWeight(String[] keys, Integer[] weights){ if(keys == null || weights == null || keys.length != weights.length){ return; } weightElements = new ArrayList<WeightElement>(); for(int i=0; i< keys.length; i++){ weightElements.add(new WeightElement(keys[i], weights[i])); } rangeWeightElemnts(); printRvs(); } private void rangeWeightElemnts(){ if(weightElements.size() == 0){ return; } WeightElement ele0 = weightElements.get(0); ele0.setThresholdLow(0); ele0.setThresholdHigh(ele0.getWeight()); for(int i = 1; i < weightElements.size(); i++){ WeightElement curElement = weightElements.get(i); WeightElement preElement = weightElements.get(i - 1); curElement.setThresholdLow(preElement.getThresholdHigh()); curElement.setThresholdHigh(curElement.getThresholdLow() + curElement.getWeight()); } } public WeightElement getElementByRandomValue(Integer rv){ //因为元素权重范围有序递增,所以这里可以改为二分查找 for(WeightElement e:weightElements){ if(rv >= e.getThresholdLow() && rv < e.getThresholdHigh()){ return e; } } return null; } public Integer getMaxRandomValue(){ if(weightElements == null || weightElements.size() == 0){ return null; } return weightElements.get(weightElements.size() - 1).getThresholdHigh(); } public void printRvs(){ for(WeightElement e:weightElements){ System.out.println(e.toString()); } } static class WeightElement{ /** * 元素标记 */ private String key; /** * 元素权重 */ private Integer weight; /** * 权重对应随机数范围低线 */ private Integer thresholdLow; /** * 权重对应随机数范围高线 */ private Integer thresholdHigh; public WeightElement(){ } public WeightElement(Integer weight){ this.key = weight.toString(); this.weight = weight; } public WeightElement(String key, Integer weight){ this.key = key; this.weight = weight; } public String getKey() { return key; } public void setKey(String key) { this.key = key; } public Integer getWeight() { return weight; } public void setWeight(Integer weight) { this.weight = weight; } public Integer getThresholdLow() { return thresholdLow; } public void setThresholdLow(Integer thresholdLow) { this.thresholdLow = thresholdLow; } public Integer getThresholdHigh() { return thresholdHigh; } public void setThresholdHigh(Integer thresholdHigh) { this.thresholdHigh = thresholdHigh; } public String toString(){ return "key:"+this.key + " weight:" + this.weight + " low:"+this.thresholdLow+" heigh:"+this.thresholdHigh; } } }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156

二分法的实现

  1. public WeightElement getElementByRandomValue(Integer rv){
  2. if(rv < 0 || rv > getMaxRandomValue()-1){ return null; } //此时rv必然在0 - getMaxRandomValue()-1范围内, //也就是必然能够命中某一个值 int start = 0, end = weightElements.size() - 1; int index = weightElements.size()/2; while(true){ if(rv < weightElements.get(index).getThresholdLow()){ end = index - 1; }else if(rv >= weightElements.get(index).getThresholdHigh()){ start = index + 1; }else{ return weightElements.get(index); } index = (start + end)/2; } }
 
http://blog.csdn.net/BuquTianya/article/details/51051672
 

基本算法描述如下:

1、每个广告增加权重 
2、将所有匹配广告的权重相加sum, 
3、以相加结果为随机数的种子,生成1~sum之间的随机数rd 
4、.接着遍历所有广告,访问顺序可以随意.将当前节点的权重值加上前面访问的各节点权重值得curWt,判断curWt >=  rd,如果条件成立则返回当前节点,如果不是则继续累加下一节点. 直到符合上面的条件,由于rd<=sum 因此一定存在curWt>=rd。 
特别说明:

此算法和广告的顺序无关 

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
 
public class Test {
 
   /**
    * @param args
    */
   @SuppressWarnings ( "unchecked" )
   public static void main(String[] args) {
     
     List<Node> arrNodes = new ArrayList<Node>();
     Node n = new Node( 10 , "测试1" );
     arrNodes.add(n);
     n = new Node( 20 , "测试2" );
     arrNodes.add(n);
     n = new Node( 30 , "测试3" );
     arrNodes.add(n);
     n = new Node( 40 , "测试4" );
     arrNodes.add(n);
     
     //Collections.sort(arrNodes, new Node());
     Map<String, Integer> showMap = null ;
     int sum = getSum(arrNodes);
     int random = 0 ;
     Node kw = null ;
     for ( int k = 0 ; k < 20 ; k++) {
       showMap = new LinkedHashMap<String, Integer>();
       for ( int i = 0 ; i < 100 ; i++) {
         random = getRandom(sum);
         kw = getKW(arrNodes, random);
         if (showMap.containsKey(kw.kw)) {
           showMap.put(kw.kw, showMap.get(kw.kw) + 1 );
         } else {
           showMap.put(kw.kw, 1 );
         }
         //System.out.println(i + " " +random + " " + getKW(arrNodes, random));
       }
       System.out.print(k + " " );
       System.out.println(showMap);
     }
   }
   
   public static Node getKW(List<Node> nodes, int rd) {
     Node ret = null ;
     int curWt = 0 ;
     for (Node n : nodes){
       curWt += n.weight;
       if (curWt >= rd) {
         ret = n;
         break ;
       }
     }
     return ret;
   }
   public static int getSum(List<Node> nodes) {
     int sum = 0 ;
     for (Node n : nodes)
       sum += n.weight;
     return sum;
   }
   public static int getRandom( int seed) {
     return ( int )Math.round(Math.random() * seed);
   }
}
class Node implements Comparator{
   int weight = 0 ;
   String kw = "" ;
   
   public Node() {}
   
   public Node( int wt, String kw) {
     this .weight = wt;
     this .kw = kw;
   }
   public String toString(){
     StringBuilder sbBuilder = new StringBuilder();
     sbBuilder.append( " weight=" ).append(weight);
     sbBuilder.append( " kw" ).append(kw);
     return sbBuilder.toString();
   }
   public int compare(Object o1, Object o2) {
     Node n1 = (Node)o1;
     Node n2 = (Node)o2;
     if (n1.weight > n2.weight)
       return 1 ;
     else
       return 0 ;
   }
}
 
 
http://www.jb51.net/article/65058.htm

根据权重进行抽取的算法应用比较广泛,其中抽奖便是主要用途之一。正好这几天也正在进行抽奖模块的开发,整个抽奖模块涉及到的地方大概有三处,分别是后台进行奖品的添加(同时设置权重和数量),前台根据后台配置生成抽奖队列并根据指令开始抽奖活动,最后一部分是后台统计中奖情况并设置物流状态。本文主要针对前台抽奖算法进行介绍如何根据权重设置每个奖品被抽到的概率。

抽奖算法的核心是根据权重设置随机数出现的概率,在此我将它封装成一个生成随机数的随机类,代码如下:

 

[java]  view plain  copy
 
  1. /** 
  2.  * JAVA 返回随机数,并根据概率、比率 
  3.  *  
  4.  */  
  5. public class MathRandom {  
  6.       
  7.     private static Log logger = LogFactory.getLog(MathRandom.class);  
  8.   
  9.     /** 
  10.      * Math.random()产生一个double型的随机数,判断一下 每个奖品出现的概率 
  11.      *  
  12.      * @return int 
  13.      *  
  14.      */  
  15.     public int PercentageRandom(List<RewardPrize> prizes) {  
  16.         DecimalFormat df = new DecimalFormat("######0.00");    
  17.         int random = -2;  
  18.         try{  
  19.             double sumWeight = 0;  
  20.             //计算总权重  
  21.             for(RewardPrize rp_1 : prizes){  
  22.                 sumWeight += rp_1.getPrize_weight();  
  23.             }  
  24.             double randomNumber;  
  25.             randomNumber = Math.random();  
  26.             System.out.println("randomNumber是:" + randomNumber);  
  27.             double d1 = 0;  
  28.             double d2 = 0;  
  29.               
  30.             for(int i=0;i<prizes.size();i++){  
  31.                 d2 += Double.parseDouble(String.valueOf(prizes.get(i).getPrize_weight()))/sumWeight;  
  32.                 if(i==0){  
  33.                     d1 = 0;  
  34.                 }else{  
  35.                     d1 +=Double.parseDouble(String.valueOf(prizes.get(i-1).getPrize_weight()))/sumWeight;  
  36.                 }  
  37.                 if(randomNumber >= d1 && randomNumber <= d2){  
  38.                     random = i;  
  39.                     System.out.println("d1是:" + d1);  
  40.                     System.out.println("d2是:" + d2);  
  41.                     break;  
  42.                 }  
  43.             }  
  44.         }catch(Exception e){  
  45.             System.out.println(e.getMessage());  
  46.             logger.error("生成抽奖随机数出错,出错原因:" + e.getMessage());  
  47.             random = -1;  
  48.         }  
  49.         return random;  
  50.     }  
  51.   
  52.     /** 
  53.      * 测试主程序 
  54.      *  
  55.      * @param agrs 
  56.      */  
  57.     public static void main(String[] agrs) {  
  58.         int i = 0;  
  59.         MathRandom a = new MathRandom();  
  60.         List<RewardPrize> prizes = new ArrayList();  
  61.         for(int m=0;m<100;m++){  
  62.             RewardPrize rp = new RewardPrize();  
  63.             rp.setPrize_amount(10);//每个奖品数量设置10个  
  64.             rp.setPrize_weight(1);//每个奖品的权重都设置成1,也就是每个奖品被抽到的概率相同(可根据情况自行设置权重)  
  65.             prizes.add(rp);  
  66.         }  
  67.         for (i = 0; i <= 100; i++)// 打印100个测试概率的准确性  
  68.         {  
  69.             System.out.println(a.PercentageRandom(prizes));  
  70.         }  
  71.     }  
  72. }  


简单介绍一下上面的代码含义,首先计算出待选奖品的总权重,这样做的目的是可以随意设置奖品权重,不必再考虑权重之和是否等于100。随机规则是首先生成一个随机数randomNumber(生成的随机数位于0到1的左开右闭区间),然后分别计算出当前奖品前前面所有有奖品(不包括当前奖品)的概率和d1和当前奖品后面(包括当前奖品)所有奖品的概率和d2,然后判断生成的随机数randomNumber是否已处于d1和d2之间,如果处于该区间之内则当前奖品将被抽中。
 
http://blog.csdn.net/a1314517love/article/details/47276663
 
http://www.open-open.com/code/view/1455771789339
 

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

简单实现代码如下:

  1. import java.util.ArrayList;
  2. import java.util.List;
  3. import java.util.Random;
  4. public class WeightRandom {
  5. static List<WeightCategory> categorys = new ArrayList<WeightCategory>();
  6. private static Random random = new Random();
  7. public static void initData() {
  8. WeightCategory wc1 = new WeightCategory("A",60);
  9. WeightCategory wc2 = new WeightCategory("B",20);
  10. WeightCategory wc3 = new WeightCategory("C",20);
  11. categorys.add(wc1);
  12. categorys.add(wc2);
  13. categorys.add(wc3);
  14. }
  15. public static void main(String[] args) {
  16. initData();
  17. Integer weightSum = 0;
  18. for (WeightCategory wc : categorys) {
  19. weightSum += wc.getWeight();
  20. }
  21. if (weightSum <= 0) {
  22. System.err.println("Error: weightSum=" + weightSum.toString());
  23. return;
  24. }
  25. Integer n = random.nextInt(weightSum); // n in [0, weightSum)
  26. Integer m = 0;
  27. for (WeightCategory wc : categorys) {
  28. if (m <= n && n < m + wc.getWeight()) {
  29. System.out.println("This Random Category is "+wc.getCategory());
  30. break;
  31. }
  32. m += wc.getWeight();
  33. }
  34. }
  35. }
  36. class WeightCategory {
  37. private String category;
  38. private Integer weight;
  39. public WeightCategory() {
  40. super();
  41. }
  42. public WeightCategory(String category, Integer weight) {
  43. super();
  44. this.setCategory(category);
  45. this.setWeight(weight);
  46. }
  47. public Integer getWeight() {
  48. return weight;
  49. }
  50. public void setWeight(Integer weight) {
  51. this.weight = weight;
  52. }
  53. public String getCategory() {
  54. return category;
  55. }
  56. public void setCategory(String category) {
  57. this.category = category;
  58. }
  59. }
http://www.open-open.com/code/view/1423987535515

转载于:https://www.cnblogs.com/softidea/p/5873265.html

本文内容由网友自发贡献,转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/289149
推荐阅读
相关标签
  

闽ICP备14008679号