C/C++计算程序执行时间的方法,精度依次增加,推荐度也依次增加
1.#include <time.h>
clock_t start, finish;
double process_interval ;
start=clock();
process(); //要计时的程序
finish=clock();
process_interval =(double)(finish-start)/CLOCKS_PER_SEC; //秒级别的精度
2.#include <sys/time.h>
//这是函数中定义的结构体和函数原型,方便查看,实际使用中不需要定义
struct timeval{
long int tv_sec; // 秒数
long int tv_usec; // 微秒数
}
struct timezone{
int tz_minuteswest; //格林威治时间往西方的时差
int tz_dsttime; //DST 时间的修正方式
}
int gettimeofday(struct timeval*tv, struct timezone *tz)
// ############实际中直接使用############
struct timeval start;
struct timeval end;
float process_interval ;
gettimeofday(&start, NULL); //第二个参数一般设置为NULL就可以
process(); //要计时的程序
gettimeofday(&end, NULL);
//使用的是tv_usec微秒级别的精度,所以除以1000输出的就是毫秒。
process_interval = end.tv_sec - start.tu_sec + (float)(end.tv_usec - start.tv_usec) /1000; //精度为毫秒
3.#include <chrono>
std::chrono::time_p
C/C++ 计算程序运行的时间
最新推荐文章于 2024-09-22 18:04:56 发布
本文介绍了如何在C/C++中利用chrono库和time.h头文件来精确测量程序的执行时间,包括高精度计时和传统时间戳计时的方法,帮助开发者优化代码性能。
摘要由CSDN通过智能技术生成