甜美外套

文章
2
资源
0
加入时间
2年10月18天

linux 下查看程序运行时间

有时候我们要计算程序执行的时间.比如我们要对算法进行时间分析 一、函数法可以使用下面这个函数. #include int gettimeofday(struct timeval *tv,struct timezone *tz); strut timeval { long tv_sec; /* 秒数 */ long tv_usec; /* 微秒数 */ }; //get