博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
rand(5) -> rand(7)
阅读量:6259 次
发布时间:2019-06-22

本文共 599 字,大约阅读时间需要 1 分钟。

int rand7() //random number from 1 - 7{    int r = 0;    do    {       int a = rand(5) - 1; //uniformly at random from 0 to 4       int b = rand(5) - 1;  //uniformly at random from 0 to 4       r = 5*b + a;  //uniformly at random from 0 to 24    }    while (r >= 21); // in this event, we have to roll again   //postcondition of loop: we have a number uniformly at random between 0 and 20  return r % 7 + 1;     //there are 3 numbers in [0, 20] for each possible return value  //so each has equal probability.      }

 

确保每一步都是distribution uniformly.

转载于:https://www.cnblogs.com/leetcode/p/4008961.html

你可能感兴趣的文章
Netty线程模型
查看>>
『Kaggle』Sklearn中几种分类器的调用&词袋建立
查看>>
017_nginx重定向需求
查看>>
[UWP]涨姿势UWP源码——RSS feed的获取和解析
查看>>
判断一个变量是否为空的方法
查看>>
linux 学习一:安装jdk和tomcat
查看>>
[js高手之路]html5 canvas动画教程 - 边界判断与反弹
查看>>
Lua--------------------unity3D与Slua融合使用
查看>>
IP视频通信中的"丢包恢复技术”(LPR)
查看>>
java序列化/反序列化之xstream、protobuf、protostuff 的比较与使用例子
查看>>
xcode编译报错unknown error -1=ffffffffffffffff Command /bin/sh failed with exit code 1
查看>>
linux定时任务crontab设置
查看>>
$.ajax返回的JSON格式的数据后无法执行success的解决方法
查看>>
Android 多媒体MediaPlayer使用详解
查看>>
Golang源码探索(三) GC的实现原理
查看>>
魔方NewLife.Cube升级v2.0
查看>>
Silverlight 引路蜂二维图形库示例:颜色
查看>>
使用PS保存PDF为图片(JPG)
查看>>
40款不容错过的个人摄影设计作品集网站
查看>>
使用 PIVOT 和 UNPIVOT 行转列
查看>>