如何计算程序运行时间,呵呵,一大堆复杂的程序,
先来个简单的,qsort算法,数据吗?随机产生:
看见了吧,(当然,在数据量小的情况下,感觉不到差别,但是在数据量超大的情况下,就会有明显感觉了。)
60000000 vs 10000000
时间消耗有区别哦。
[root@localhost ctest]# time ./33
hehe:60000000
----------------------------------------before quick sort--------------
----------------------------------------after quick sort-----------------
ok
real 0m17.976s
user 0m17.246s
sys 0m0.150s
[root@localhost ctest]# time ./33
hehe:10000000
----------------------------------------before quick sort--------------
----------------------------------------after quick sort-----------------
ok
real 0m2.871s
user 0m2.627s
sys 0m0.030s
原文:http://www.cnblogs.com/dpblue/p/3921350.html