C/C++ 计算程序运行的时间

本文介绍了如何在C/C++中利用chrono库和time.h头文件来精确测量程序的执行时间,包括高精度计时和传统时间戳计时的方法,帮助开发者优化代码性能。
摘要由CSDN通过智能技术生成
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
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值