M README.md => README.md +1 -1
@@ 1,4 1,4 @@
-# Are Hashmaps Worth it
+# Are Hashmaps Better
A simple experiment on my machine to find at what point a string lookup is better
with a hash map compared to a linear search. The data also includes binary search just for fun.
M main.c => main.c +0 -2
@@ 19,8 19,6 @@ struct hashtable {
void **vals;
};
-
-
uint64_t
fnv64(const char *ptr, size_t len)
{