<small id='pmxtx'></small><noframes id='pmxtx'>

      <bdo id='pmxtx'></bdo><ul id='pmxtx'></ul>

    <tfoot id='pmxtx'></tfoot>
  1. <i id='pmxtx'><tr id='pmxtx'><dt id='pmxtx'><q id='pmxtx'><span id='pmxtx'><b id='pmxtx'><form id='pmxtx'><ins id='pmxtx'></ins><ul id='pmxtx'></ul><sub id='pmxtx'></sub></form><legend id='pmxtx'></legend><bdo id='pmxtx'><pre id='pmxtx'><center id='pmxtx'></center></pre></bdo></b><th id='pmxtx'></th></span></q></dt></tr></i><div id='pmxtx'><tfoot id='pmxtx'></tfoot><dl id='pmxtx'><fieldset id='pmxtx'></fieldset></dl></div>

    <legend id='pmxtx'><style id='pmxtx'><dir id='pmxtx'><q id='pmxtx'></q></dir></style></legend>
    1. 使用 time() 函数计算执行时间

      时间:2023-06-30
      <i id='f37vg'><tr id='f37vg'><dt id='f37vg'><q id='f37vg'><span id='f37vg'><b id='f37vg'><form id='f37vg'><ins id='f37vg'></ins><ul id='f37vg'></ul><sub id='f37vg'></sub></form><legend id='f37vg'></legend><bdo id='f37vg'><pre id='f37vg'><center id='f37vg'></center></pre></bdo></b><th id='f37vg'></th></span></q></dt></tr></i><div id='f37vg'><tfoot id='f37vg'></tfoot><dl id='f37vg'><fieldset id='f37vg'></fieldset></dl></div>
      <legend id='f37vg'><style id='f37vg'><dir id='f37vg'><q id='f37vg'></q></dir></style></legend>
        <tbody id='f37vg'></tbody>

        <tfoot id='f37vg'></tfoot>

        • <bdo id='f37vg'></bdo><ul id='f37vg'></ul>

            • <small id='f37vg'></small><noframes id='f37vg'>

                本文介绍了使用 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() 函数计算执行时间的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                上一篇:std::chrono::clock,硬件时钟和周期计数 下一篇:你如何打印 C++11 时间点?

                相关文章

                <legend id='BIZKh'><style id='BIZKh'><dir id='BIZKh'><q id='BIZKh'></q></dir></style></legend>

                  <small id='BIZKh'></small><noframes id='BIZKh'>

                  • <bdo id='BIZKh'></bdo><ul id='BIZKh'></ul>

                1. <tfoot id='BIZKh'></tfoot>
                  1. <i id='BIZKh'><tr id='BIZKh'><dt id='BIZKh'><q id='BIZKh'><span id='BIZKh'><b id='BIZKh'><form id='BIZKh'><ins id='BIZKh'></ins><ul id='BIZKh'></ul><sub id='BIZKh'></sub></form><legend id='BIZKh'></legend><bdo id='BIZKh'><pre id='BIZKh'><center id='BIZKh'></center></pre></bdo></b><th id='BIZKh'></th></span></q></dt></tr></i><div id='BIZKh'><tfoot id='BIZKh'></tfoot><dl id='BIZKh'><fieldset id='BIZKh'></fieldset></dl></div>