赞
踩
涉及知识点:①生成随机序列 ②数组排序③计算程序运行时间
源程序如下:
#include<iostream>
#include<cstdlib>
#include<time.h>
#include<stdio.h>
#include<ctime>
using namespace std;
void Random(int* x, int n, int l, int r)//生成n个范围在l~r的随机数,并初始化数组
{
cout << "原始数组:" << endl;
srand(time(0));//因为rand是伪随机数函数,虽生成随机数,但每次生成的随机数都相同
for (int i = 0; i < n; i++) {
x[i] = rand() % (r - l + 1) + l;//用n个随机数列初始化数组
cout << x[i] << endl;//输出原始随机数组
}
}
void show(int*x,int n)//将数组从小到大排列并且按要求输出
{
int i,j,temp;
for (i = 0; i < n - 1; i++) {
for (j = i + 1; j < n; j++) {
if (x[i] > x[j])//注意if 语句这里要带括号,否则排序只执行一次
{
temp = x[j];
x[j] = x[i];
x[i] = temp;
}
}//将数组从小到大排序
if ((i + 1) %5 == 0) cout << x[i] << '\n';//将数组五个一行输出,注意是%不是/。。。佛了,低级错误
if ((i + 1) % 5 != 0)cout << x[i] << '\t';
}
}
int main() {
clock_t start, finish;//声明开始时间和结束时间
start = clock();//clock函数的功能是返回从“开启这个程序”到程序中再次调用clock函数时之间的CPU时钟计时单元数
int a[20];
Random(a, 20, 1, 100);
show(a, 20);
finish = clock();
cout <<"\n 程序运行时间:" << (double)(finish - start) / CLOCKS_PER_SEC * 1000.0 << "(ms)" << endl;
//CLOCKS_PRE_SEC是常量,用来表示一秒钟会有多少个时钟计时单元,注意clock_t是长整型,返回的是整型,所以要用double
return 0;
}
赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。