C++怎么产生随机数列并排序
将随机数组定义为外部的、用main和一个排序的函数将产生的随机数列打出来,单个的程序我会编但是要怎么样把他们组合起来相互调用就不懂了,那个随机数组定义为外部要怎么弄...
将随机数组定义为外部的、用main和一个排序的函数将产生的随机数列打出来,单个的程序我会编但是要怎么样把他们组合起来相互调用就不懂了,那个随机数组定义为外部要怎么弄
展开
2个回答
展开全部
#include <iostream>
#define NUMBER 20
using namespace std;
int main()
{
int index = 0;
int iValue = 0;
int strArr[NUMBER];
//产生随机数填充数组
for(;index < NUMBER; ++index)
{
iValue = rand();
strArr[index] = iValue;
}
//输出没有排序之前的数组
for(index = 0; index < NUMBER; ++index)
{
cout<<strArr[index]<<"\t";
}
cout<<endl;
//对数组进行排序
int temp = 0;
for(int oInd = 0; oInd < NUMBER; ++oInd)
{
for(int iInd = oInd; iInd < NUMBER; ++iInd)
{
if(strArr[oInd] > strArr[iInd])
{
temp = strArr[iInd];
strArr[iInd] = strArr[oInd];
strArr[oInd] = temp;
}
}
}
//将排序后的数组再次输出进行比较
for(index = 0; index < NUMBER; ++index)
{
cout<<strArr[index]<<"\t";
}
cout<<endl;
system("pause");
return 0;
}
#define NUMBER 20
using namespace std;
int main()
{
int index = 0;
int iValue = 0;
int strArr[NUMBER];
//产生随机数填充数组
for(;index < NUMBER; ++index)
{
iValue = rand();
strArr[index] = iValue;
}
//输出没有排序之前的数组
for(index = 0; index < NUMBER; ++index)
{
cout<<strArr[index]<<"\t";
}
cout<<endl;
//对数组进行排序
int temp = 0;
for(int oInd = 0; oInd < NUMBER; ++oInd)
{
for(int iInd = oInd; iInd < NUMBER; ++iInd)
{
if(strArr[oInd] > strArr[iInd])
{
temp = strArr[iInd];
strArr[iInd] = strArr[oInd];
strArr[oInd] = temp;
}
}
}
//将排序后的数组再次输出进行比较
for(index = 0; index < NUMBER; ++index)
{
cout<<strArr[index]<<"\t";
}
cout<<endl;
system("pause");
return 0;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询