码迷,mamicode.com
首页 > 其他好文 > 详细

测试程序运行时间

时间:2015-03-29 17:46:45      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:

精确到秒:

time_t t1,t2;

time(&t1);

some instruction.....

time(&t2);

printf("%d\n",t2-t1);

精确到毫秒:

clock_t c1,c2;

c1=clock();

some instruction....

c2=clock();

printf("%d\n",c2-c1);

精确到微妙:

struct timeval tv_start,tv_end;

gettimeofday(&tv_start,NULL);

some instruction....

gettimeofday(&tv_end,NULL);

printf("%d\n",(tv_end.tv_sec-tv_start.sec)*1000+(tv_end.usec-tv_start.usec);

 

测试程序运行时间

标签:

原文地址:http://www.cnblogs.com/li-xingtao/p/4375836.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!