欢迎来到代码驿站!

C代码

当前位置:首页 > 软件编程 > C代码

C++生成不重复的随机整数

时间:2021-01-14 11:16:02|栏目:C代码|点击:

C++生成不重复的随机数,供大家参考,具体内容如下

给定正整数的范围[n,m],生成k个不重复的随机数字。

IDE是vs013。

#include "stdafx.h"
#include <iostream> 
#include <vector>
#include <stdlib.h> 
#include <time.h>
#include<list>
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
 srand((unsigned)time(NULL));
 list<int>::iterator it;//迭代器
 list<int> l;//定义链表,保存生成的随机数
 int begin, end;//数字范围
 int sum;//随机数个数
 cout << "输入数字范围([n,m]):";
 cin >>begin>>end;
 cout << "输入随机数个数:";
 cin >> sum;
 if ( (end<0)||(begin<0)||(begin >end)|| (sum>end))//起始范围必须大于0,且随机数个数小于等于最大数字范围
 {
 cout << "范围错误";
 cout << endl;
 system("pause");
 return 0;
 }
 else
 {
 while (l.size() < sum)
 {
 l.push_back(rand() % (end - begin + 1) + begin);
 l.sort();//排序
 l.unique();//去除相邻的重复随机数中的第一个
 }
 cout << "结果:";
 }
 for (it = l.begin(); it != l.end(); it++)
 {
 cout << *it << ' ';
 }
 
 cout << endl;
 system("pause");
 return 0;
}

运行结果:

这个程序可以用于班级内部按照学号进行随机抽签。

上一篇:C++Primer笔记之关联容器的使用详解

栏    目:C代码

下一篇:C语言求解无向图顶点之间的所有最短路径

本文标题:C++生成不重复的随机整数

本文地址:http://www.codeinn.net/misctech/45254.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有