码迷,mamicode.com
首页 > 其他好文 > 详细

伪随机数生成器

时间:2018-05-25 21:17:34      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:伪随机   turn   dom   随机数生成   const   rand   return   span   source   

伪随机数生成器

emm,应该没有什么好说的。

const int maxn=1000;
const int a=19260817, c=1, m=1<<31;
int x=233;
int random(){ return x=(1LL*a*x+c)%m; }

伪随机数生成器

标签:伪随机   turn   dom   随机数生成   const   rand   return   span   source   

原文地址:https://www.cnblogs.com/MyNameIsPc/p/9090370.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!