Guest User

Untitled

a guest
Jan 16th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. int hash = key.hashCode(); // get the hashcode of the key
  2. int index = compress(hash); // compress it to an index
  3.  
  4. int compress(int hash) {
  5. return hash % numBuckets;
  6. }
Add Comment
Please, Sign In to add comment