初始化测试,memset,for,fill

#include <queue> #include <stack> #include <math.h> #include <stdio.h> #include <stdlib.h> #include <iostream> #include <limits.h> #include <string.h> #include <algorithm> using namespace std; class Time { public: void Start() //开始计时 { start_time=clock(); } int End() //结束计时,返回消耗的时间。以ms为单位 { return clock()-start_time; } private: clock_t start_time; }; const int MAX = 10000000; char a[MAX]; int main() { int i; char to = '/0'; Time t; t.Start(); clock(); memset(a,to,sizeof(a)); cout << t.End() << endl; t.Start(); clock(); for(i=0; i<MAX; i++) a[i] = to; cout << t.End() << endl; t.Start(); clock(); fill(a,a+MAX,to); cout << t.End()<<endl; system("pause"); return 0; } 结论:

fill的表现中规中矩,好处是可以赋各种值。

for不稳定

memset速度领先


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值