首页 > 代码库 > linux下程序运行时间

linux下程序运行时间

如何计算程序运行时间,呵呵,一大堆复杂的程序,

先来个简单的,qsort算法,数据吗?随机产生:

看见了吧,(当然,在数据量小的情况下,感觉不到差别,但是在数据量超大的情况下,就会有明显感觉了。)

60000000 vs 10000000

时间消耗有区别哦。

[root@localhost ctest]# time ./33hehe:60000000----------------------------------------before quick sort------------------------------------------------------after quick sort-----------------okreal    0m17.976suser    0m17.246ssys    0m0.150s[root@localhost ctest]# time ./33hehe:10000000----------------------------------------before quick sort------------------------------------------------------after quick sort-----------------okreal    0m2.871suser    0m2.627ssys    0m0.030s