码迷,mamicode.com
首页 > 其他好文 > 详细

算出代码运行时间

时间:2018-11-10 20:05:41      阅读:247      评论:0      收藏:0      [点我收藏+]

标签:names   space   name   style   fine   end   ace   int   div   

 1 #include <bits/stdc++.h>
 2 #define maxn 1000005
 3 
 4 typedef long long ll;
 5 
 6 using namespace std;
 7 
 8 clock_t start,stop;
 9 
10 ll a[maxn];
11 void kk()
12 {
13     for(int i = 1; i <= 1000000; i ++)
14     {
15         a[i] = i;
16     }
17 }
18 int main()
19 {
20     double t;
21     start = clock();
22     kk();
23     stop = clock();
24     t = ((double)(stop - start)) / CLK_TCK;
25     cout << t << endl;
26     return 0;
27 }

 

算出代码运行时间

标签:names   space   name   style   fine   end   ace   int   div   

原文地址:https://www.cnblogs.com/WINDZLY/p/9940193.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!