免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12下一页
最近访问板块 发新帖
查看: 4032 | 回复: 16
打印 上一主题 下一主题

请问c语言里随机数函数的实现代码该在哪儿找? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-05-05 20:37 |只看该作者 |倒序浏览
srand()、rand()的实现代码查得到吗?

论坛徽章:
5
2015年辞旧岁徽章
日期:2015-03-03 16:54:152015年迎新春徽章
日期:2015-03-04 09:53:172015亚冠之水原三星
日期:2015-06-02 16:34:202015年亚冠纪念徽章
日期:2015-10-19 18:13:37程序设计版块每日发帖之星
日期:2015-11-08 06:20:00
2 [报告]
发表于 2009-05-05 20:39 |只看该作者

  1. /***
  2. *rand.c - random number generator
  3. *
  4. *       Copyright (c) 1985-2001, Microsoft Corporation. All rights reserved.
  5. *
  6. *Purpose:
  7. *       defines rand(), srand() - random number generator
  8. *
  9. *******************************************************************************/
  10. #include <cruntime.h>
  11. #include <mtdll.h>
  12. #include <stddef.h>
  13. #include <stdlib.h>
  14. #ifndef _MT
  15. static long holdrand = 1L;
  16. #endif  /* _MT */
  17. /***
  18. *void srand(seed) - seed the random number generator
  19. *
  20. *Purpose:
  21. *       Seeds the random number generator with the int given.  Adapted from the
  22. *       BASIC random number generator.
  23. *
  24. *Entry:
  25. *       unsigned seed - seed to seed rand # generator with
  26. *
  27. *Exit:
  28. *       None.
  29. *
  30. *Exceptions:
  31. *
  32. *******************************************************************************/
  33. void __cdecl srand (
  34.         unsigned int seed
  35.         )
  36. {
  37. #ifdef _MT
  38.         _getptd()->_holdrand = (unsigned long)seed;
  39. #else  /* _MT */
  40.         holdrand = (long)seed;
  41. #endif  /* _MT */
  42. }

  43. /***
  44. *int rand() - returns a random number
  45. *
  46. *Purpose:
  47. *       returns a pseudo-random number 0 through 32767.
  48. *
  49. *Entry:
  50. *       None.
  51. *
  52. *Exit:
  53. *       Returns a pseudo-random number 0 through 32767.
  54. *
  55. *Exceptions:
  56. *
  57. *******************************************************************************/
  58. int __cdecl rand (
  59.         void
  60.         )
  61. {
  62. #ifdef _MT
  63.         _ptiddata ptd = _getptd();
  64.         return( ((ptd->_holdrand = ptd->_holdrand * 214013L
  65.             + 2531011L) >> 16) & 0x7fff );
  66. #else  /* _MT */
  67.         return(((holdrand = holdrand * 214013L + 2531011L) >> 16) & 0x7fff);
  68. #endif  /* _MT */
  69. }


复制代码

论坛徽章:
0
3 [报告]
发表于 2009-05-05 20:41 |只看该作者
在ISO/IEC 9899:1999 (E)里查到这些内容:

EXAMPLE  The following functions define a portable implementation of rand and srand.

static unsigned long int next = 1;
int rand(void) // RAND_MAX assumed to be 32767
{
next = next * 1103515245 + 12345;
return (unsigned int)(next/65536) % 32768;
}

void srand(unsigned int seed)
{
next = seed;
}

这些代码是在哪个文件里?
还请高人指点。

论坛徽章:
0
4 [报告]
发表于 2009-05-05 20:42 |只看该作者
这仍然依赖于实现。你用哪个 libc?

论坛徽章:
0
5 [报告]
发表于 2009-05-05 22:30 |只看该作者

回复 #2 xinglp 的帖子

3Q

论坛徽章:
0
6 [报告]
发表于 2009-05-05 22:43 |只看该作者

回复 #3 glasslion 的帖子

晕 原来随机数就是这样简单的运算结果- -

我还一直以为是啥高级公式算出来的

论坛徽章:
0
7 [报告]
发表于 2009-05-05 22:57 |只看该作者

论坛徽章:
0
8 [报告]
发表于 2009-05-06 12:04 |只看该作者
注释里都说了,这是产生pseudo-random 数字的方法。
真正随机数的产生方法,可以看看内核实现。

论坛徽章:
0
9 [报告]
发表于 2009-05-06 12:09 |只看该作者
二楼的代码搞定了问题

论坛徽章:
3
金牛座
日期:2014-06-14 22:04:062015年辞旧岁徽章
日期:2015-03-03 16:54:152015年迎新春徽章
日期:2015-03-04 09:49:45
10 [报告]
发表于 2009-05-06 12:24 |只看该作者
不知道有没有不依赖与系统时间的随机数
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP