Examples of quick hash tables and dynamic arrays in C
January 19, 2025
nullprogram.com/blog/2025/01/19/
This article durably captures my reddit comment showing techniques
for std::unordered_map and std::vector equivalents in C programs. The
core, important features of these data structures require only a dozen or
so lines of code apiece. They compile quickly, and tend to run faster in
debug builds than release builds of their C++ equivalents. What they
lack in genericity they compensate in simplicity. Nothing here will be
new. Everything has been c...
Read more at nullprogram.com