关于For循环的性能

Posted Andy_Cheng

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于For循环的性能相关的知识,希望对你有一定的参考价值。

for (int i=0;i<10;i++)

primer c++ 中有一道习题。我是这样理解的,请各位大虾拍砖!

#include <iostream>
#include <string>
#include<time.h>
using namespace std;
int main()
{
 clock_t t1=clock();
 for (int i=0;i!=1000000;i++) //可以改为i<1000000,然后比较结果
 {
 
cout<<i<<endl;
 }
 clock_t t2=clock(); 
 float time=(t2-t1)*1.0/CLOCKS_PER_SEC ;
 cout<<time<<endl;
}
得出时间分别是:192.57;210.371
所以我以为前一种格式效率更高。

以上是关于关于For循环的性能的主要内容,如果未能解决你的问题,请参考以下文章

关于空间/时间的 Groovy 集合性能注意事项

for 循环和 for-each 循环之间是不是存在性能差异?

Python'for'循环性能太慢

JAVA,关于for循环,循环体里的问题

使用Map优化双层For循环

javascript(ES6):比“for循环”更有效的方法吗?