시간측정 오류
팬지
2023.04.01
#include stdio.h
#include time.h
#include selectionSort.h
#define MAX_SIZE 1001
void main(void)
{
int i, n, step = 10;
int a[MAX_SIZE];
double duration;printf( n repetitions time\n);
for (n=0 ; n=1000 ; n+=step)
{
long repetitions = 0;
clock_t start = clock();
do
{
repetitons++;
for(i=0 ; in ; i++)
a[i] = n-i;
sort(a, n);
}while (clock() - start 1000);duration = ((double) (clock() - start))
/ CLOCKS_PER_SEC;
duration /= repetitions;
printf(%6d %9d %f\n, n, repetitions, duration);
if (n == 100) step = 100;
}
}시간측정을 할려고 소스를 적엇는데 시간이 안나오고 오류만뜨네요...소스랑 해결법점 가리켜주세요!!