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

测一下变量申请的速度

时间:2019-08-21 21:23:37      阅读:61      评论:0      收藏:0      [点我收藏+]

标签:ace   pre   测试   map   code   for   type   its   nbsp   

 

下面是测试用的代码:

 1 #include <bits/stdc++.h>
 2 
 3 using namespace std;
 4 
 5 int main(){
 6     cout<<"(Type)"<<endl;
 7     for(int i=1;i<=5e7;i++){
 8         (Type) a;
 9     }
10 }

 结果:

int
-----------------------------------------
Runing Time:    104.599ms
-----------------------------------------
long long
-----------------------------------------
Runing Time:    104.540ms
-----------------------------------------
vector<int>
-----------------------------------------
Runing Time:   1749.897ms
-----------------------------------------
deque<int>
-----------------------------------------
Runing Time:  14822.420ms
-----------------------------------------
queue<int>
-----------------------------------------
Runing Time:  38413.759ms
-----------------------------------------
map<int,int>
-----------------------------------------
Runing Time:   1571.477ms
-----------------------------------------
set<int>
-----------------------------------------
Runing Time:   1570.402ms
-----------------------------------------
list<int>
-----------------------------------------
Runing Time:   1482.101ms
-----------------------------------------

 

测一下变量申请的速度

标签:ace   pre   测试   map   code   for   type   its   nbsp   

原文地址:https://www.cnblogs.com/marmot-cage/p/11391168.html

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