问题描述
- [请教]C伪随机函数rand() 的相关问题
-
/* rand0.c ---产生随机数*/
/*使用ANSI C 可移植算法*/
static unsigned long int next=1; //种子
int rand0(void)
{
next=next*1103515245+123456;
return (unsigned int)(next/65536)%32768;
}
void srand0(unsigned int seed)
{
next=seed;
}
/*r_drive0.c 测试rand0() srand0()函数*/
#include
#include
extern void srand0(unsigned int);
extern int rand0(void);int main(void)
{
int count;
srand0((unsigned int)time(0));
for(count=0;count
printf("%dn",rand0());
return 0;
}
/////////////////////////////////////////////////////////////////////////////////
1> 为什么rand0() 函数里面的那2个公式是可移植算法?
2> static unsigned long int next; 是unsigned long 类型的,为什么srand0((unsigned int )time(0))
参数要指派成unsigned int 类型,而不是unsigned long 类型,难道为了增加移植性?
解决方案
1.因为对同样位数的CPU来说,加减乘除,包括取模,他们的结果是一定的。
2.这个是习惯用法吧。好像都是这样用的,没有一定的原因吧、即使把这个srand和rand封装成库,这个time(0)也不在库里面,和移植性应该没有啥关系
时间: 2024-10-28 15:39:08