c语言获得指定范围的不重复的n个随机数

/*************************************************************************
  > File Name: test.c
  > Author: xiaopeng
  > Mail: [email protected] 
  > Created Time: Mon 01 Jul 2019 09:05:32 PM PDT
 ************************************************************************/

#include    //调用printf函数需要包含此头文件
#include   //调用随机数函数需要包含此头文件
#include     //time函数

int getRandNum(int *a,int n,int min,int max)   //获取[min-max]之间不重复的n个随机数保存到数组a中
{
	int i,j,t,m = 0,flag;   
	srand(time(NULL));     //随机数种子函数
	for(i=0; i

你可能感兴趣的:(linux)