循环开销(loop overhead)测试程序
同样的运算次数,for 循环的个数不同,开销也是不同的。我表示很无知……#include #include #include using namespace std;int main() { int k; struct timeval start, end; gettimeofday(&start, NULL); for (int l = 0; l