|
|
|
|
start = HashValue( key ); // Start looking in the Hash location search_i = start; // Start here while ( bucket[sreach_i] != EMPTY /* not empty */ && "search did not wrap around" ) { search_i = (search_i + 1) % N; // Keep looking in the NEXT hash bucket } |
|
|
|
|
|
|
|