linux 下查看程序运行时间 有时候我们要计算程序执行的时间.比如我们要对算法进行时间分析 一、函数法可以使用下面这个函数. #include int gettimeofday(struct timeval *tv,struct timezone *tz); strut timeval { long tv_sec; /* 秒数 */ long tv_usec; /* 微秒数 */ }; //get Linux 2024-01-09 52 点赞 0 评论 78 浏览