c++unordered_map扩容

 1 #include <iostream>
 2 #include <string>
 3 #include <unordered_map>
 4 using namespace std;
 5 
 6 int main()
 7 {  
 8     unordered_map<int , string> ump;
 9     for(int i=0; i<190; i++)
10     {
11         ump.insert(pair<int, string>(i, "amy"));
12         cout << "插入 " << i << " - ";
13         cout << "桶数量" << ump.bucket_count() << " - ";
14         cout << "最大桶数量" << ump.bucket_count() << endl;
15     }
16     return 0;
17 }

c++unordered_map扩容

 

 c++unordered_map扩容c++unordered_map扩容

 

 

 应该不同的编译器的初始值是不同的,但是应该都是找到不小于2倍的最小素数

上一篇:Python的运行效率太低?几行代码快速提升!!!


下一篇:C++ 学习笔记9-unordered_multiset、set和unordered_map、multimap 六