c/c++查看代码片段运行时间

一、clock函数

#include   
#include   
 
int main()
{
	double start, end, cost;
	start = clock();
 
	int i = 100000000;
	while (i > 0)
	{
		i--;
	}
 
	end = clock();
	cost = (end - start)/CLOCKS_PER_SEC;//CLOCKS_PER_SEC表示时钟次数
	printf("%f\n", cost);
	return 0;
}

二、gettimeofday函数

ref:

clock函数在计算并行程序用时中存在的问题_clock 不支持并发-CSDN博客

C/C++获取时间方法:gettimeofday()_c++ gettimeofday-CSDN博客

Linux下统计程序、函数、代码运行时间_主函数运行时间和代码量-CSDN博客

4.代码片断收集-linux下运行时间测量_linux 测量代码执行时间-CSDN博客

c++中计时程序_c++ clocks_per_sec-CSDN博客

你可能感兴趣的:(c语言,c++,开发语言)