From 6ab7e5d32fb1e856ce59d953545380ba07f8e12d Mon Sep 17 00:00:00 2001 From: Jidong Xiao Date: Thu, 9 Nov 2023 16:29:58 -0500 Subject: [PATCH] line break --- lectures/21_hash_tables_II/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lectures/21_hash_tables_II/README.md b/lectures/21_hash_tables_II/README.md index 1e3c624..f7d02e6 100644 --- a/lectures/21_hash_tables_II/README.md +++ b/lectures/21_hash_tables_II/README.md @@ -114,7 +114,7 @@ if (itr != my_data.end()) { - Using the default std::string hash function. - – With no specified initial table size. (map a std::string type key to a Foo class type value) + – With no specified initial table size. (map a std::string type key to a class Foo type value) ```cpp std::unordered_map m; ``` @@ -132,6 +132,7 @@ std::unordered_map > m( std::unordered_map m(1000, MyHashFunction); ``` - Using a home-made std::string hash functor or function object. + – With no specified initial table size. ```cpp std::unordered_map m;