当前位置:   article > 正文

【每日练习】C++字符串章节—随机数_c++字符串数组随机

c++字符串数组随机
// void srand(unsigned int seed);  	// 初始化随机数生成器(播种子)。
// int  rand();                    	// 获一个取随机数。

// 功能需求:
// 	写一个函数,随机生成n个整数,不允许重复。
// 	函数原型:
// void rrand(int arr[], const size_t len, const int minvalue=0);
#include <iostream>
#include <stdlib.h>
#include <string.h>
using namespace std;

void
rrand (int arr[], const size_t len, const int minvalue = 0)
{
  srand (time (0)); // 初始化随机种子
  for (int i = 0; i < len; i++)
    {
      while (1)
        {
          int tmp = rand () % len + minvalue;
          int j;
          for (j = 0; j < i; j++)
            if (tmp == arr[j])
              break;
          if (j == i)
            {
              arr[i] = tmp;
              break;
            }
        }
    }
}
auto
main () -> int
{
  // srand(time(0));
  // for(int i=0;i<10;i++)
  //   cout << rand() << endl;

  // 如果要生成 0—20的随机数
  // srand(time(0));
  // for(int i=0;i<10;i++)
  //   cout << rand()%20 << endl;

  // 如果要生成 20-70的随机数
  //  srand(time(0));
  // for(int i=0;i<10;i++)
  //   cout << rand()%(70-20)+20 << endl;
  int rand_value[10];
  memset(rand_value,0,sizeof(rand_value));
  rrand(rand_value,10,0);
  for(int i=0;i<sizeof(rand_value)/sizeof(int);i++)
    {
      cout <<i<<"= "<<rand_value[i]<<endl;
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/463046
推荐阅读
相关标签
  

闽ICP备14008679号