计算函数执行时间

方法一:使用clock函数


#include
#include

int main()
{
    clock_t start_time=clock();

    {
        //被测试代码
    }

    clock_t end_time=clock();
    cout<< "Running time is: "<(end_time-start_time)/CLOCKS_PER_SEC*1000<<"ms"<     return 0;
}  

clock_t,clock()定义于time.h中,clock()返回从程序运行时刻开始的时钟周期数,类型为long.CLOCKS_PER_SEC定义了每秒钟包含多少了时钟单元数,因为计算ms,所以*1000。

你可能感兴趣的:(其他)