C++编写生成不重复的随机数代码

时间:2021-05-20

C++编写生成不重复的随机数代码

vector<int> getRandom(int total){ srand((int)time(NULL)); std::vector<int> input = *new std::vector<int>(); for (int i = 0; i < total; i++) { input.push_back(i); } vector<int> output = *new vector<int>(); int end = total; for (int i = 0; i < total; i++) { vector<int>::iterator iter = input.begin(); int num = random()%end; iter = iter+num; output.push_back(*iter); input.erase(iter); end--; } return output;}

再来一例:

void permutation(int n, int *z_array){ int i, j, k, z; int buffer[N]; for (i=0; i<n; i++) buffer[i]=0; srand((unsigned)time((long *)0)); for (i=0; i<n; i++) { z = rand()%(n-i); j=0; k=0; while (j<=z) { if (buffer[j+k]==0) j++; else k++; } buffer[j+k-1]=1; z_array[i]=j+k-1; } return;}

方法三:来个复杂点的

#include<stdio.h>#include <time.h>#include "iostream"#include <math.h>#define N 53using namespace std;//print arrayvoid display(int *a){ for (int i =0;i<N;i++) { cout<<" "<<a[i]<<" "; }}int main(void){ int b[N],a[N]; for (int i =0;i<N;i++) { b[i] = i+1; } // random(a); srand((unsigned)time(NULL)); int MaxIndex = N; for ( i= 0;i<N;i++) { // int index = (int)rand()%MaxIndex;//随机一个 0 - 52的index a[i] = b[index]; //随机到的数字给a[i],i from 0 to N-1 b[index] = b[MaxIndex-1]; MaxIndex--; } display(a); return 0;}

以上3种方法均可实现生成不重复的随机数,具体的效率如何,小伙伴们自己测试下吧。

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章