From 92a4145c43e4533ffac1157bbe00547d44d1d8f0 Mon Sep 17 00:00:00 2001 From: Jidong Xiao Date: Mon, 31 Mar 2025 20:03:41 -0400 Subject: [PATCH] making the program name visible --- lectures/22_hash_tables_I/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lectures/22_hash_tables_I/README.md b/lectures/22_hash_tables_I/README.md index 46e677b..8b05df6 100644 --- a/lectures/22_hash_tables_I/README.md +++ b/lectures/22_hash_tables_I/README.md @@ -185,7 +185,7 @@ unsigned int hash(const std::string& k, unsigned int N) { ``` - The 2nd method is better, but can be improved further. The theory of good hash functions is quite involved and beyond the scope of this course. -- You can run [this program](hash_test.cpp) which will show that the second hash function produces a lower collision rate: +- You can run this program [hash_test.cpp](hash_test.cpp) which will show that the second hash function produces a lower collision rate: ```console $ g++ -Wall -Wextra hash_test.cpp