Update README.md

This commit is contained in:
邹晓航
2014-09-22 19:24:55 +08:00
parent 859d30041b
commit 54eebdcf6e

View File

@@ -33,9 +33,24 @@ TinySTL
* iterator traits100%
* vector100%
* STL Algorithms:
* fill100%
* fill_n100%
#测试
##测试环境VS2013 release模式
##测试结果:
* fill100%
* fill_n100%
#TinySTL测试:
###测试环境Windows 7 && VS2013 && release模式
###测试结果:
//std::vector<int> vec;
TinySTL::vector<int> vec;
ProfilerInstance::start();
int i = 0;
for (; i != 10000; ++i){
vec.push_back(i);
}
ProfilerInstance::finish();
ProfilerInstance::dumpDuringTime();
######i = 100000 -> (TinySTL::vector<int>2ms \\ std::vector<int>6ms)
######i = 1000000 -> (TinySTL::vector<int>11ms \\ std::vector<int>16ms)
######i = 10000000 -> (TinySTL::vector<int>129ms \\ std::vector<int>210ms)