#include <stdio.h>
#include <stdlib.h>
#include <time.h>
void main(void)
{
clock_t start, finish;
double duration;
start = clock();
// 수행 시간 측정 시작..
…
// 알고리즘
finish = clock();
duration = (double)(finish - start) / CLOCKS_PER_SEC;
printf("%f 초 걸렸습니다. \n", duration);
// 수행 시간 측정 종료
}
'Technology > Algorithms' 카테고리의 다른 글
Algorithms / 너비 우선 탐색(Breath first search) (0) | 2009.12.05 |
---|---|
Algorithms / 깊이 우선 탐색 소스코드(Depth first search) (0) | 2009.12.05 |
Algorithms / 삽입정렬 소스코드(C) (0) | 2009.12.05 |
Algorithms / SMDA RAID Paper(논문) (0) | 2009.12.05 |
Algorithms / SMDA RAID 구성 알고리즘 (0) | 2009.12.05 |