diff --git a/lectures/21_hash_tables_II/README.md b/lectures/21_hash_tables_II/README.md index f7d02e6..1f48a4f 100644 --- a/lectures/21_hash_tables_II/README.md +++ b/lectures/21_hash_tables_II/README.md @@ -118,6 +118,7 @@ if (itr != my_data.end()) { ```cpp std::unordered_map m; ``` + – Optionally specifying initial (minimum) table size. ```cpp std::unordered_map m(1000); @@ -127,6 +128,7 @@ std::unordered_map m(1000); ```cpp std::unordered_map > m(1000, MyHashFunction); ``` + – Using the decltype specifier to get the “declared type of an entity”. ```cpp std::unordered_map m(1000, MyHashFunction); @@ -137,6 +139,7 @@ std::unordered_map m(1000, MyHashFunc ```cpp std::unordered_map m; ``` + – Optionally specifying initial (minimum) table size. ```cpp std::unordered_map m(1000);