Calculating time of execution with time() function(使用 time() 函数计算执行时间)
问题描述
我接到了以下家庭作业,
I was given the following HomeWork assignment,
写一个程序在你的电脑上测试需要多长时间nlogn、n2、n5、2n 和 n!添加 n=5、10、15、20.
Write a program to test on your computer how long it takes to do nlogn, n2, n5, 2n, and n! additions for n=5, 10, 15, 20.
我已经写了一段代码,但我的执行时间总是为 0.谁能帮我解决这个问题?谢谢
I have written a piece of code but all the time I am getting the time of execution 0. Can anyone help me out with it? Thanks
#include <iostream>
#include <cmath>
#include <ctime>
using namespace std;
int main()
{
float n=20;
time_t start, end, diff;
start = time (NULL);
cout<<(n*log(n))*(n*n)*(pow(n,5))*(pow(2,n))<<endl;
end= time(NULL);
diff = difftime (end,start);
cout <<diff<<endl;
return 0;
}
推荐答案
每个计算执行数千次,循环执行,这样你就可以克服时间
的低分辨率并获得有意义的结果.报告结果时记得除以迭代次数.
Execute each calculation thousands of times, in a loop, so that you can overcome the low resolution of time
and obtain meaningful results. Remember to divide by the number of iterations when reporting results.
这不是特别准确,但这可能与此作业无关.
This is not particularly accurate but that probably does not matter for this assignment.
这篇关于使用 time() 函数计算执行时间的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 time() 函数计算执行时间


基础教程推荐
- C++结构和函数声明。为什么它不能编译? 2022-11-07
- 如何通过C程序打开命令提示符Cmd 2022-12-09
- 在 C++ 中计算滚动/移动平均值 2021-01-01
- 常量变量在标题中不起作用 2021-01-01
- 我有静态或动态 boost 库吗? 2021-01-01
- 这个宏可以转换成函数吗? 2022-01-01
- 如何将 std::pair 的排序 std::list 转换为 std::map 2022-01-01
- 如何检查GTK+3.0中的小部件类型? 2022-11-30
- 如何在 C++ 中初始化静态常量成员? 2022-01-01
- 静态库、静态链接动态库和动态链接动态库的 .lib 文件里面是什么? 2021-01-01