extensible-hashing

How can I implement extendible hashing in java?

extendible hashing is one of the best hashing method,I want to create program in java, for extenidble hashing. is there any api available for doing that? i dont get the clear algorithm for doing that myself, so if there is no api, .if possible post algoirhtm ...

Implementing separate overflow chaining

I am solving a problem of getting the top K frequency from an array of structure containing value and frequency sorted by value ascending. The data size is really huge say a million entries. After discussing this with my friend, we shortlisted hash bucket approach with separate overflow chaining. Here’s my approach: Since the number of ...