From f56aa4eb0b4c893020b4f202ead9c3c983ac2e93 Mon Sep 17 00:00:00 2001 From: Jidong Xiao Date: Thu, 9 Nov 2023 16:30:54 -0500 Subject: [PATCH] line break --- lectures/21_hash_tables_II/README.md | 3 +++ 1 file changed, 3 insertions(+) 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);