赞
踩
clock()
通过在代码的开始和结束处调用clock()
函数,可以计算出程序执行所需的时间。
#include <stdio.h> #include <time.h> int main() { clock_t start, end; double cpu_time_used; start = clock(); // 开始计时 // 你的算法代码放在这里 end = clock(); // 结束计时 cpu_time_used = ((double) (end - start)) / CLOCKS_PER_SEC; // 计算时间 printf("程序执行时间为: %f seconds\n", cpu_time_used); return 0; }
time.h
头文件中的time()
函数 time()
函数返回自1970年1月1日以来的秒数。可以通过在代码开始和结束时调用time()
函数,并计算二者之间的差值来计算程序执行的时间。
#include <stdio.h> #include <time.h> int main() { time_t start, end; double elapsed_time; start = time(NULL); // 开始计时 // 你的算法代码放在这里 end = time(NULL); // 结束计时 elapsed_time = difftime(end, start); // 计算时间 printf("程序执行时间为: %f seconds\n", elapsed_time); return 0; }
gettimeofday()
函数gettimeofday()
函数可以获取当前的秒数和微秒数,可以用来计算程序执行的时间。
例如:
#include <stdio.h> #include <sys/time.h> int main() { struct timeval start, end; long seconds, microseconds; gettimeofday(&start, NULL); // 开始计时 // 你的算法代码放在这里 gettimeofday(&end, NULL); // 结束计时 seconds = end.tv_sec - start.tv_sec; microseconds = end.tv_usec - start.tv_usec; // 计算时间 printf("程序执行时间为: %ld.%06ld seconds\n", seconds, microseconds); return 0; }
QueryPerformanceCounter
和QueryPerformanceFrequency
)这种方法的精确度通常很高,但需要特定的操作系统支持。(针对Windows操作系统):
使用操作系统的性能计数器来计算C语言中算法执行的时间,需要使用特定操作系统的API来进行性能计数器的读取和设置。以Windows操作系统为例,可以使用QueryPerformanceCounter和QueryPerformanceFrequency两个函数来获取CPU性能计数器和频率。
使用Windows API来计算一个简单循环算法的执行时间,代码如下:
#include <stdio.h> #include <windows.h> int main() { LARGE_INTEGER start, end, freq; double elapsed_time; int i, n = 100000000; // 获取性能计数器的频率 QueryPerformanceFrequency(&freq); // 开始计时 QueryPerformanceCounter(&start); // 执行循环算法 for (i = 0; i < n; i++) { // ... 你的算法代码在这里 ... } // 结束计时 QueryPerformanceCounter(&end); // 计算执行时间 elapsed_time = (end.QuadPart - start.QuadPart) / (double)freq.QuadPart; printf("程序执行时间为: %f seconds\n", elapsed_time); return 0; }
解释:
注意:
由于QueryPerformanceCounter和QueryPerformanceFrequency都是Windows API函数,因此这段代码只能在Windows操作系统上运行。
由于性能计数器是针对CPU的,因此如果算法中包含了I/O等非CPU操作,那么这段代码计算出来的执行时间可能并不准确。
来都来了,点个赞再走嘛~~
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。