[Algorithm] 수행시간 측정 방법
향후 알고리즘의 시간 측정은 다음과 같은 방법으로 진행된다. #include #include int main(int argc, const char * argv[]) { // insert code here... clock_t start_time, end_time; // Time Variable Declare start_time = clock(); // Time to start // Here is Some Code end_time = clock(); // Time to end printf("Time : %f\n", ((double)(end_time-start_time)) / CLOCKS_PER_SEC); return 0; } Here is Some Code 라고 주석으로 명시한 부분에 내가 수행할 코드를 넣..
2015.03.03