c++统计for运行时间

Posted g0rez

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c++统计for运行时间相关的知识,希望对你有一定的参考价值。

 1  #include<bits/stdc++.h>
 2    using namespace std;
 3    int main(){
 4       int i,k,n = 1e9;
 5       clock_t start,end;
 6       start = clock();
 7       for(i=0;i<n;i++)k++;
 8       end=clock();
 9       cout<<(double)(end -start)/CLOCKS_PER_SEC<<endl;
10       return 0;
11   } 

以上是关于c++统计for运行时间的主要内容,如果未能解决你的问题,请参考以下文章

这些 C++ 代码片段有啥作用?

C++ 代码片段执行

有趣的 C++ 代码片段,有啥解释吗? [复制]

以下代码片段 C++ 的说明

此 Canon SDK C++ 代码片段的等效 C# 代码是啥?

opencv c++ 以灰度图方式加载一张图片,并统计该图像素的最大值、最小值、均值以及方差,完整代码