hi, does anyone know any good online tutorials on how to dynamically resize hash tables?
thanks
hi, does anyone know any good online tutorials on how to dynamically resize hash tables?
thanks
I don't know any internet tutorial on dynamic hash table, but you should look for something like linear hashing. I believe linear hashing is the most popular method when it comes to dynamic hash table. Note that implementing a dynamic hash table is more complex than a "regular" one (i personally never did any implementation of dynamic hash table...).
Maybe there's a better data structure for your problem. Hash tables are cool, tough they can be unreliable if not implemented carefully.