当前位置:   article > 正文

如何在C中生成随机int?

如何在C中生成随机int?

是否有在C中生成随机int数的函数? 或者我必须使用第三方库吗?


#1楼

让我们来看看。 首先,我们使用srand()函数为随机化器播种。 基本上,计算机可以根据提供给srand()的数字生成随机数。 如果给出相同的种子值,则每次都会生成相同的随机数。

因此,我们必须使用始终在变化的值为随机化器播种。 我们通过使用time()函数向其提供当前时间的值来实现此目的。

现在,当我们调用rand()时,每次都会产生一个新的随机数。

  1. #include <stdio.h>
  2. int random_number(int min_num, int max_num);
  3. int main(void)
  4. {
  5. printf("Min : 1 Max : 40 %d\n", random_number(1,40));
  6. printf("Min : 100 Max : 1000 %d\n",random_number(100,1000));
  7. return 0;
  8. }
  9. int random_number(int min_num, int max_num)
  10. {
  11. int result = 0, low_num = 0, hi_num = 0;
  12. if (min_num < max_num)
  13. {
  14. low_num = min_num;
  15. hi_num = max_num + 1; // include max_num in output
  16. } else {
  17. low_num = max_num + 1; // include max_num in output
  18. hi_num = min_num;
  19. }
  20. srand(time(NULL));
  21. result = (rand() % (hi_num - low_num)) + low_num;
  22. return result;
  23. }

#2楼

试试这个,我把它从上面提到的一些概念中加入:

  1. /*
  2. Uses the srand() function to seed the random number generator based on time value,
  3. then returns an integer in the range 1 to max. Call this with random(n) where n is an integer, and you get an integer as a return value.
  4. */
  5. int random(int max) {
  6. srand((unsigned) time(NULL));
  7. return (rand() % max) + 1;
  8. }

#3楼

rand()是生成随机数的最方便的方法。

您也可以通过random.org等在线服务获取随机数。


#4楼

  1. #include <stdio.h>
  2. #include <dos.h>
  3. int random(int range);
  4. int main(void)
  5. {
  6. printf("%d", random(10));
  7. return 0;
  8. }
  9. int random(int range)
  10. {
  11. struct time t;
  12. int r;
  13. gettime(&t);
  14. r = t.ti_sec % range;
  15. return r;
  16. }

#5楼

这是在您选择的两个数字之间获取随机数的好方法。

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <time.h>
  4. #define randnum(min, max) \
  5. ((rand() % (int)(((max) + 1) - (min))) + (min))
  6. int main()
  7. {
  8. srand(time(NULL));
  9. printf("%d\n", randnum(1, 70));
  10. }

第一次输出:39

第二次输出:61

输出第三次:65

您可以将randnum之后的值更改为您选择的任何数字,并在这两个数字之间为您生成一个随机数。


#6楼

听到一个很好的解释为什么使用rand()在给定范围内产生均匀分布的随机数是一个坏主意,我决定看看输出实际上是多么倾斜。 我的测试案例是公平骰子投掷。 这是C代码:

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <time.h>
  4. int main(int argc, char *argv[])
  5. {
  6. int i;
  7. int dice[6];
  8. for (i = 0; i < 6; i++)
  9. dice[i] = 0;
  10. srand(time(NULL));
  11. const int TOTAL = 10000000;
  12. for (i = 0; i < TOTAL; i++)
  13. dice[(rand() % 6)] += 1;
  14. double pers = 0.0, tpers = 0.0;
  15. for (i = 0; i < 6; i++) {
  16. pers = (dice[i] * 100.0) / TOTAL;
  17. printf("\t%1d %5.2f%%\n", dice[i], pers);
  18. tpers += pers;
  19. }
  20. printf("\ttotal: %6.2f%%\n", tpers);
  21. }

这是它的输出:

  1. $ gcc -o t3 t3.c
  2. $ ./t3
  3. 1666598 16.67%
  4. 1668630 16.69%
  5. 1667682 16.68%
  6. 1666049 16.66%
  7. 1665948 16.66%
  8. 1665093 16.65%
  9. total: 100.00%
  10. $ ./t3
  11. 1667634 16.68%
  12. 1665914 16.66%
  13. 1665542 16.66%
  14. 1667828 16.68%
  15. 1663649 16.64%
  16. 1669433 16.69%
  17. total: 100.00%

我不知道你需要你的随机数是多么统一,但上面看起来足够均匀以满足大多数需求。

编辑:用比time(NULL)更好的东西初始化PRNG是个好主意。


#7楼

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. void main()
  4. {
  5. int visited[100];
  6. int randValue, a, b, vindex = 0;
  7. randValue = (rand() % 100) + 1;
  8. while (vindex < 100) {
  9. for (b = 0; b < vindex; b++) {
  10. if (visited[b] == randValue) {
  11. randValue = (rand() % 100) + 1;
  12. b = 0;
  13. }
  14. }
  15. visited[vindex++] = randValue;
  16. }
  17. for (a = 0; a < 100; a++)
  18. printf("%d ", visited[a]);
  19. }

#8楼

标准C函数是rand() 。 这对于单人纸牌来说已经足够好了,但这太可怕了。 rand()许多实现循环通过一个简短的数字列表,而低位的循环更短。 一些程序调用rand()方式很糟糕,计算好的种子传递给srand()很难。

在C中生成随机数的最佳方法是使用OpenSSL之类的第三方库。 例如,

  1. #include <stdint.h>
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4. #include <openssl/rand.h>
  5. /* Random integer in [0, limit) */
  6. unsigned int random_uint(unsigned int limit) {
  7. union {
  8. unsigned int i;
  9. unsigned char c[sizeof(unsigned int)];
  10. } u;
  11. do {
  12. if (!RAND_bytes(u.c, sizeof(u.c))) {
  13. fprintf(stderr, "Can't get random bytes!\n");
  14. exit(1);
  15. }
  16. } while (u.i < (-limit % limit)); /* u.i < (2**size % limit) */
  17. return u.i % limit;
  18. }
  19. /* Random double in [0.0, 1.0) */
  20. double random_double() {
  21. union {
  22. uint64_t i;
  23. unsigned char c[sizeof(uint64_t)];
  24. } u;
  25. if (!RAND_bytes(u.c, sizeof(u.c))) {
  26. fprintf(stderr, "Can't get random bytes!\n");
  27. exit(1);
  28. }
  29. /* 53 bits / 2**53 */
  30. return (u.i >> 11) * (1.0/9007199254740992.0);
  31. }
  32. int main() {
  33. printf("Dice: %d\n", (int)(random_uint(6) + 1));
  34. printf("Double: %f\n", random_double());
  35. return 0;
  36. }

为什么这么多代码? Java和Ruby等其他语言具有随机整数或浮点数的函数。 OpenSSL只提供随机字节,因此我尝试模仿Java或Ruby如何将它们转换为整数或浮点数。

对于整数,我们希望避免模偏差 。 假设我们从rand() % 10000获得了一些随机的4位整数,但是rand()只能返回0到32767(就像在Microsoft Windows中一样)。 0到2767之间的每个数字看起来都比2768到9999中的每个数字更频繁。要消除偏差,我们可以在值低于2768时重试rand() ,因为从2768到32767的30000值均匀地映射到10000个值从0到9999。

对于浮点数,我们需要53个随机位,因为double保持53位精度(假设它是IEEE的两倍)。 如果我们使用超过53位,我们会得到舍入偏差。 一些程序员编写像rand() / (double)RAND_MAX这样的代码,但rand()可能只返回31位,或者只返回Windows中的15位。

OpenSSL的RAND_bytes()可以通过在Linux中读取/dev/urandom来实现种子本身。 如果我们需要很多随机数,那么从/dev/urandom读取它们的速度太慢,因为它们必须从内核中复制。 允许OpenSSL从种子生成更多随机数更快。

更多关于随机数字:


#9楼

如果您的系统支持arc4random系列函数,我建议使用它们而不是标准rand函数。

arc4random系列包括:

  1. uint32_t arc4random(void)
  2. void arc4random_buf(void *buf, size_t bytes)
  3. uint32_t arc4random_uniform(uint32_t limit)
  4. void arc4random_stir(void)
  5. void arc4random_addrandom(unsigned char *dat, int datlen)

arc4random返回一个随机的32位无符号整数。

arc4random_buf将随机内容放入其参数buf : void * 。 内容量由bytes : size_t参数确定。

arc4random_uniform返回一个随机的32位无符号整数,该整数遵循以下规则: 0 <= arc4random_uniform(limit) < limit ,其中limit也是无符号的32位整数。

arc4random_stir/dev/urandom读取数据并将数据传递给arc4random_addrandom以额外随机化它的内部随机数池。

arc4random_addrandomarc4random_stir用于根据传递给它的数据填充它的内部随机数池。

如果您没有这些功能,但是您使用的是Unix,则可以使用以下代码:

  1. /* This is C, not C++ */
  2. #include <sys/types.h>
  3. #include <sys/stat.h>
  4. #include <fcntl.h>
  5. #include <errno.h>
  6. #include <unistd.h>
  7. #include <stdlib.h> /* exit */
  8. #include <stdio.h> /* printf */
  9. int urandom_fd = -2;
  10. void urandom_init() {
  11. urandom_fd = open("/dev/urandom", O_RDONLY);
  12. if (urandom_fd == -1) {
  13. int errsv = urandom_fd;
  14. printf("Error opening [/dev/urandom]: %i\n", errsv);
  15. exit(1);
  16. }
  17. }
  18. unsigned long urandom() {
  19. unsigned long buf_impl;
  20. unsigned long *buf = &buf_impl;
  21. if (urandom_fd == -2) {
  22. urandom_init();
  23. }
  24. /* Read 4 bytes, or 32 bits into *buf, which points to buf_impl */
  25. read(urandom_fd, buf, sizeof(long));
  26. return buf_impl;
  27. }

urandom_init函数打开/dev/urandom设备,并将文件描述符放在urandom_fd

urandom函数基本上与对rand的调用相同,除了更安全,它返回一个long (容易更改)。

但是, /dev/urandom可能有点慢,因此建议您将其用作不同随机数生成器的种子。

如果您的系统没有/dev/urandom ,但确实/dev/random或类似的文件,那么您只需在urandom_init更改传递给open的路径。 urandom_initurandom中使用的调用和API(我相信)符合POSIX标准,因此,应该适用于大多数(如果不是全部)POSIX兼容系统。

注意:如果可用的熵不足,则/dev/urandom读取将不会阻塞,因此在这种情况下生成的值可能是加密不安全的。 如果您对此感到担心,请使用/dev/random ,如果熵不足,将始终阻止。

如果您在另一个系统(即Windows)上,则使用rand或某些内部Windows特定于平台的非可移植API。

urandomrandarc4random调用的包装函数:

  1. #define RAND_IMPL /* urandom(see large code block) | rand | arc4random */
  2. int myRandom(int bottom, int top){
  3. return (RAND_IMPL() % (top - bottom)) + bottom;
  4. }

#10楼

希望比使用srand(time(NULL))更随机。

  1. #include <time.h>
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4. int main(int argc, char **argv)
  5. {
  6. srand((unsigned int)**main + (unsigned int)&argc + (unsigned int)time(NULL));
  7. srand(rand());
  8. for (int i = 0; i < 10; i++)
  9. printf("%d\n", rand());
  10. }

#11楼

我的简约解决方案适用于范围[min, max)随机数。 在调用函数之前使用srand(time(NULL))

  1. int range_rand(int min_num, int max_num) {
  2. if (min_num >= max_num) {
  3. fprintf(stderr, "min_num is greater or equal than max_num!\n");
  4. }
  5. return min_num + (rand() % (max_num - min_num));
  6. }

#12楼

如果您需要安全的随机字符或整数:

如何在各种编程语言中安全地生成随机数 ,您需要执行以下操作之一:

例如:

  1. #include "sodium.h"
  2. int foo()
  3. {
  4. char myString[32];
  5. uint32_t myInt;
  6. if (sodium_init() < 0) {
  7. /* panic! the library couldn't be initialized, it is not safe to use */
  8. return 1;
  9. }
  10. /* myString will be an array of 32 random bytes, not null-terminated */
  11. randombytes_buf(myString, 32);
  12. /* myInt will be a random number between 0 and 9 */
  13. myInt = randombytes_uniform(10);
  14. }

randombytes_uniform()是加密安全且无偏的。


#13楼

我在最近的应用程序中遇到了一个严重的伪随机数生成器问题:我通过pyhton脚本重复调用我的C程序,我使用以下代码作为种子:

srand(time(NULL))

但是,因为:

  • rand将生成相同的伪随机序列,在srand中给出相同的种子(参见man srand );
  • 如前所述,时间函数仅从第二个时间开始变化:如果您的应用程序在同一秒内多次运行,则time将每次返回相同的值。

我的程序生成了相同的数字序列。 你可以做3件事来解决这个问题:

  1. 混合时间输出与运行时更改的其他信息(在我的应用程序中,输出名称):

     srand(time(NULL) | getHashOfString(outputName)) 

    我使用djb2作为我的哈希函数。

  2. 增加时间分辨率。 在我的平台上, clock_gettime可用,所以我使用它:

     #include<time.h> struct timespec nanos; clock_gettime(CLOCK_MONOTONIC, &nanos) srand(nanos.tv_nsec); 
  3. 一起使用两种方法:

     #include<time.h> struct timespec nanos; clock_gettime(CLOCK_MONOTONIC, &nanos) srand(nanos.tv_nsec | getHashOfString(outputName)); 

选项3确保您(据我所知)最佳种子随机性,但它可能仅在非常快的应用程序上产生差异。 在我看来,选项2是一个安全的赌注。


#14楼

C程序生成9到50之间的随机数

  1. #include <time.h>
  2. #include <stdlib.h>
  3. int main()
  4. {
  5. srand(time(NULL));
  6. int lowerLimit = 10, upperLimit = 50;
  7. int r = lowerLimit + rand() % (upperLimit - lowerLimit);
  8. printf("%d", r);
  9. }

通常我们可以在lowerLimit和upperLimit-1之间生成一个随机数

即lowerLimit包含或说r∈[lowerLimit,upperLimit)


#15楼

在现代x86_64 CPU上,您可以通过_rdrand64_step()使用硬件随机数生成器

示例代码:

  1. #include <immintrin.h>
  2. uint64_t randVal;
  3. if(!_rdrand64_step(&randVal)) {
  4. // Report an error here: random number generation has failed!
  5. }
  6. // If no error occured, randVal contains a random 64-bit number

#16楼

尽管所有人都在这里建议rand() ,你不想使用rand()除非你必须! rand()产生的随机数通常非常糟糕。 引用Linux手册页:

Linux C库中的rand()srand()版本使用与random random(3)srandom(3)相同的随机数生成器,因此低阶位应该与高阶位一样随机。 但是,在较旧的rand()实现以及不同系统上的当前实现中, 低阶位比高阶位更不随机 。 当需要良好的随机性时,请勿在可移植的应用程序中使用此功能。 ( 改为使用random(3)

关于可移植性, random()也由POSIX标准定义了很长一段时间。 rand()较旧,它出现在第一个POSIX.1规范(IEEE Std 1003.1-1988)中,而random()首先出现在POSIX.1-2001(IEEE Std 1003.1-2001)中,但目前的POSIX标准是已经POSIX.1-2008(IEEE Std 1003.1-2008),它在一年前收到了更新(IEEE Std 1003.1-2008,2016版)。 所以我认为random()非常便携。

POSIX.1-2001还引入了lrand48()mrand48()函数, 请看这里

该系列函数应使用线性同余算法和48位整数算法生成伪随机数。

非常好的伪随机源是arc4random()函数,它在许多系统上都可用。 不是任何官方标准的一部分,在1997年左右出现在BSD中,但你可以在Linux和macOS / iOS等系统上找到它。


#17楼

  1. #include<stdio.h>
  2. #include<stdlib.h>
  3. #include<time.h>
  4. //generate number in range [min,max)
  5. int random(int min, int max){
  6. int number = min + rand() % (max - min);
  7. return number;
  8. }
  9. //Driver code
  10. int main(){
  11. srand(time(NULL));
  12. for(int i = 1; i <= 10; i++){
  13. printf("%d\t", random(10, 100));
  14. }
  15. return 0;
  16. }

#18楼

对于C,STL不存在。你必须random调用rand ,或者更好。 这些在标准库头文件stdlib.h中声明。 rand是POSIX, random是BSD规范函数。

randrandom之间的区别在于random返回一个更可用的32位随机数, rand通常返回一个16位数。 BSD联机帮助页显示rand的低位是循环且可预测的,因此rand对于小数字可能是无用的。


#19楼

好吧,STL是C ++,而不是C,所以我不知道你想要什么。 但是,如果你想要C,则有rand()srand()函数:

  1. int rand(void);
  2. void srand(unsigned seed);

这些都是ANSI C的一部分。还有random()函数:

long random(void);

但据我所知, random()不是标准ANSI C.第三方库可能不是一个坏主意,但这完全取决于你真正需要生成的数字的随机性。


#20楼

你想使用rand() 。 注意( 非常重要 ):确保为rand函数设置种子。 如果你不这样做,你的随机数不是真正随机的 。 这非常非常非常重要。 值得庆幸的是,您通常可以使用系统滴答计时器和日期的某种组合来获得良好的种子。


#21楼

<stdlib.h>rand()函数返回0到RAND_MAX之间的伪随机整数。 您可以使用srand(unsigned int seed)来设置种子。

通常的做法是将%运算符与rand()结合使用以获得不同的范围(但请记住,这会在某种程度上抛弃均匀性)。 例如:

  1. /* random int between 0 and 19 */
  2. int r = rand() % 20;

如果你真的关心一致性,你可以这样做:

  1. /* Returns an integer in the range [0, n).
  2. *
  3. * Uses rand(), and so is affected-by/affects the same seed.
  4. */
  5. int randint(int n) {
  6. if ((n - 1) == RAND_MAX) {
  7. return rand();
  8. } else {
  9. // Supporting larger values for n would requires an even more
  10. // elaborate implementation that combines multiple calls to rand()
  11. assert (n <= RAND_MAX)
  12. // Chop off all of the values that would cause skew...
  13. int end = RAND_MAX / n; // truncate skew
  14. assert (end > 0);
  15. end *= n;
  16. // ... and ignore results from rand() that fall above that limit.
  17. // (Worst case the loop condition should succeed 50% of the time,
  18. // so we can expect to bail out of this loop pretty quickly.)
  19. int r;
  20. while ((r = rand()) >= end);
  21. return r % n;
  22. }
  23. }

#22楼

FWIW,答案是肯定的,有一个名为randstdlib.h函数; 此功能主要针对速度和分布进行调整,而不是针对不可预测性。 几乎所有用于各种语言和框架的内置随机函数都默认使用此函数。 还有“加密”随机数生成器,它们的可预测性要低得多,但运行速度要慢得多。 这些应该用于任何类型的安全相关的应用程序。


#23楼

看看ISAAC (间接,移位,累积,添加和计数)。 它均匀分布,平均周期长度为2 ^ 8295。


#24楼

注意 :不要使用rand()来保证安全性。 如果您需要加密安全号码, 请参阅此答案

  1. #include <time.h>
  2. #include <stdlib.h>
  3. srand(time(NULL)); // Initialization, should only be called once.
  4. int r = rand(); // Returns a pseudo-random integer between 0 and RAND_MAX.

编辑 :在Linux上,您可能更喜欢使用random和srandom


#25楼

如果您需要比stdlib提供的质量更好的伪随机数,请查看Mersenne Twister 。 它也更快。 示例实现很多,例如这里

本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号