Update README.md

This commit is contained in:
邹晓航
2014-10-10 15:25:18 +08:00
parent 76aee832df
commit ff2ea78b25

View File

@@ -71,9 +71,9 @@ TinySTL
ProfilerInstance::finish();
ProfilerInstance::dumpDuringTime();
######i = 100000 -> (TinySTL::vector<int>18ms \\ std::vector<int>29ms)
######i = 1000000 -> (TinySTL::vector<int>181ms \\ std::vector<int>232ms)
######i = 10000000 -> (TinySTL::vector<int>2372ms \\ std::vector<int>1972ms)
######i = 100000 -> (TinySTL::vector<string>18ms \\ std::vector<string>29ms)
######i = 1000000 -> (TinySTL::vector<string>181ms \\ std::vector<string>232ms)
######i = 10000000 -> (TinySTL::vector<string>2372ms \\ std::vector<string>1972ms)
####(3):circular_buffer<int, N>
TinySTL::circular_buffer<int, 10000> cb(10000, 0);