hashdict.c
hashdict.c copied to clipboard
This is my REALLY FAST implementation of a hash table in C, in 150 lines of code.
Hi! The documentations says _the value type is defined as int in the header file, you can redefine it to the required type, which could be char or void* or...
Hey! Im a CS student, i was checking your implementation for a personal project, but i couldn't figure it out. When i try to run this code i get an...
This PR improves the performance of the hash table (hashdict) by replacing the modulo operation used for index calculation with a bitmask, which is significantly faster when the table size...