C 알고리즘 수행시간 측정하기

마이크로 초 단위로 측정하기

#include <sys/time.h>

struct timeval start, end;
long elapsed;

gettimeofday(&start, NULL);

// 알고리즘

gettimeofday(&end, NULL);

elapsed = end.tv_usec - start.tv_usec;
printf("%ld\n", elapsed);
Share Comments