0. Intro
1> C standard library를 이용한다.
#include <time.h>
1. Method 1
start = clock();
stop = clock();
duration = ((double)(stop-start))/CLOCKS_PER_SEC;
2. Method 2
start = time(NULL);
stop = time(NULL);
duration = (double)difftime(stop,start);
'자료구조' 카테고리의 다른 글
2-2강 - 구조체와 공용체 (0) | 2020.04.09 |
---|---|
2-1강 - ADT array, 동적 할당 (0) | 2020.04.09 |
1-5강 - Performance analysis (2) 점근 표기법 (0) | 2020.03.31 |
1-5강 - Performance analysis (1) 공간 복잡도, 시간 복잡도 (0) | 2020.03.31 |
1-4강 - Data abstraction (0) | 2020.03.30 |