previous | start | next

Algorithm for Finding an Object x in a Hash Table

  1. Get the index h into the hash table
  2. Iterate through the elements of the bucket at position h
  3. If a match is found among the elements of that bucket, then x is in the set

previous | start | next