X484: Hashmap - Open Addressing Hash Table

Complete the hashing algorithm for a hash table so that it functions using open addressing. Remember to store both keys and values in corresponding addresses in their arrays. The algorithm for determining the hash code has already been provided. This particular hash table only accepts keys and values as Strings. If there are no remaining addresses, do not modify the array and return false. NEEDS TESTING (MIGHT BE GETTING CAUGHT IN A LOOP)

Your Answer:

Reset

Practice a different Java exercise

Feedback

Your feedback will appear here when you check your answer.