微信红包算法遐想

 private final AtomicLong seed;

    private static final long multiplier = 0x5DEECE66DL;
    private static final long addend = 0xBL;
    private static final long mask = (1L << 48) - 1;

    /**
     * Creates a new random number generator. This constructor sets
     * the seed of the random number generator to a value very likely
     * to be distinct from any other invocation of this constructor.
     */
    public Random() {
        this(seedUniquifier() ^ System.nanoTime());
    }

闲来无事,想如果自己设计微信红包,怎么设计呢? 


因为我不是微信红包的开发人员,所以以下内容纯属虚构 


先说下我的算法,每人随机一个数,然后把所有人的加起来成为分母,每个人的数是分子,分子除以分母,就是这个人占用红包的额度。


直接看代码

public class Haobao {

	public static List<Integer> buildFen(int fen,int i){
		if(fen<=i){
			return null;
		}
		List<Integer> ins=new ArrayList<Integer>(i);
		List<Integer> cns=new ArrayList<Integer>(i);
//		Random r=ThreadLocalRandom.current();
		Random r=new Random();
		int total=0;
		for(int j=0;j<i;j++){
			int c=r.nextInt(i*10)+1;
			total=total+c;
			ins.add(c);
		}
		BigDecimal t=new BigDecimal(total);
		BigDecimal f=new BigDecimal(fen);
		BigDecimal s=f.divide(t,4,BigDecimal.ROUND_DOWN);
		for(int j=0;j<i-1;j++){
			int c=s.multiply(new BigDecimal(ins.get(j))).intValue();
			if(c==0||(fen-c)<(i-j)){
				c=1;
			}
			fen=fen-c;
			cns.add(c);
		}
		cns.add(fen);
		return cns; 
	} 
	
	public static void main(String[] args){
		for(int k=0;k<10;k++){
			long begin=System.currentTimeMillis();
			for(int i=0;i<10*10000;i++){
				List<Integer> s=buildFen(2245, 100);
//				System.out.println(s.toString());
			}
			System.out.println("time:"+(System.currentTimeMillis()-begin));
		}
		
	}
}

Random VS  ThreadLocalRandom 

有人说ThreadLocalRandom 性能比Random高,有人说Random线程不安全。


今天就看下源码,本人看的是JDK 1.7的


先看Random的,关键是seed因子 

 private final AtomicLong seed;

    private static final long multiplier = 0x5DEECE66DL;
    private static final long addend = 0xBL;
    private static final long mask = (1L << 48) - 1;

    /**
     * Creates a new random number generator. This constructor sets
     * the seed of the random number generator to a value very likely
     * to be distinct from any other invocation of this constructor.
     */
    public Random() {
        this(seedUniquifier() ^ System.nanoTime());
    }


再看下ThreadLocalRandom ,首先ThreadLocalRandom 继承了Random,仔细看接口,一些方法都是重用父类的。


用TheadLocal 实现的线程安全。


    private static final ThreadLocal<ThreadLocalRandom> localRandom =
        new ThreadLocal<ThreadLocalRandom>() {
            protected ThreadLocalRandom initialValue() {
                return new ThreadLocalRandom();
            }
    };





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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值