Question: write for JAVA CODE Hash Collisions Problem: Receive as input an array of strings. Return the set of strings which collide in the hash table

write for JAVA CODE

Hash Collisions

Problem:

Receive as input an array of strings.

Return the set of strings which collide in the hash table in the order they appear in the input list.

The hash algorithm should be implemented as the sum of the ASCII values of the lower-cased letters. For example, Bob, bob, and obb all hash to the same number.

Example input:

{ "inList" : [ "Bob", "boj", "obb", "job", "BOB", "foo" ] }

Example output:

{"outList": [[ "Bob", "obb", "BOB" ] ,[ "boj", "job" ]]}

Do not output strings which do not collide, such as foo in the example above. If the table has no collisions, return the empty array. { "outList" : [ ] }

Erroneous input (e.g. malformed JSON) should be handled gracefully with appropriate error messages.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!