- 1、本文档共6页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 5、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 6、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 7、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 8、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
c语言中怎样产生随机数(How do you generate random numbers in the C language)
c语言中怎样产生随机数(How do you generate random numbers in the C language)
Q: how to generate random numbers?
Answer: in the computer does not have a true random number generator, but it can be done to generate the digital repetition rate is very low,
It looks like a true random number, realize the function of the program is called a pseudo random number generator.
There are many related to the theory of random number, if you want to discuss in detail, need a thick book.
No matter what method of random number generator, must provide a seed initial value.
But the best value is random, or at least this value is pseudo random.
The seed value is usually fast count register or shift register to generate.
The following talk about a random number generator is provided in the C language in use.
Now the C compiler provides a function of pseudo random number generator based on ANSI standard, used to generate random numbers.
They are (rand) and srand () function. The working process of the two functions are as follows:
1) (srand) first to provide a seed, it is a unsigned int type, which ranges from 0~65535;
2) and then call rand (), it will be according to the seed value (srand) returns a random number (0 to 32767)
3) according to the need to repeatedly call (rand), so as to continuously get a new random number;
4) no matter what time can give (srand) provide a new seed, so as to further randomized rand (output).
This process seems very simple, the problem is if every time you call srand () will provide the same seed value,
Then, you will get the same sequence of random numbers, then see the phenomenon is not a random number, and each time the number is the same.
For example, in 17 as the seed value (srand) after the call at the first call (rand), random number 94.
In the second and the third call to rand () will be respectively 26602 and 30017, the number looks very random (although this is only a small set of data points),
However, in you again in 17 as the seed value, call srand ()
您可能关注的文档
- budapi资料中文说明(Budapi data description in Chinese).doc
- bwd3k130系列干式变压器温控器主要技术指标(Main technical specifications of bwd3k130 series dry-type transformer temperature controller).doc
- b制造资源计划(B manufacturing resource planning).doc
- b超单到底说明了些什么(B Ultrasound single end shows what).doc
- b超单看宝宝性别(Just look at the B Ultrasound baby gender).doc
- b超看男女孩性别(B Ultrasound see male sex girl).doc
- bypass功能介绍及分析(Introduction and analysis of bypass function).doc
- c 容器的使用(The use of C containers).doc
- c 读写文件(C read and write files).doc
- b医院的组织与人力资源管理改革(Organization and human resource management reform in B hospital).doc
- c语言例题(C language example).doc
- c语言图形代码(C language graphic code).doc
- c语言图形编程(五、二维图形变换-01)(C programming language graphics (five, two-dimensional graphics transform -01)).doc
- c语言图形编程(六、绘图程序设计-01)(C programming language graphics (six, drawing program design -01)).doc
- c照+知识(C + knowledge).doc
- coreldraw快捷键(coreldraw快捷键).doc
- c语言图形模式的初始化(Initialization of C language graphic patterns).doc
- c语言图形编程代码(C language programming code).doc
- c语言填空题(模拟)(C language fill in the blanks (simulation)).doc
- c语言常见习题。。不看后悔.(C language common exercises.. No regrets).doc
最近下载
- 《新能源汽车维护与保养》课件——任务1新能源汽车起动、操控与充电.pptx VIP
- 2019年山东省广播电视技术能手竞赛(网络安全)答案.doc VIP
- 2025年华北煤炭医学院附属医院医护人员招聘参考题库含答案解析.docx VIP
- 起重机械培训(初训)课件.ppt VIP
- 《危化品企业安全隐患排查治理图册》.pptx VIP
- 2025广东珠海市斗门区招聘公办中小学教师71人笔试备考题库及答案解析.docx VIP
- 声音在不同介质中的传播说课课件公开课教案教学设计课件案例资料.pptx VIP
- 阿那亚品牌手册.pdf VIP
- 2021ACOG妊娠期急性脂肪肝指南要点解读(全文).docx VIP
- 《福建省工程建设领域保障农民工工资支付规范化管理指导手册(第一版)》(2).doc VIP
文档评论(0)