Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Hash Collisions Goal: Write an HTTP service which accepts an array of strings and returns the sets of strings which collide in the hash table

Hash Collisions

Goal: Write an HTTP service which accepts an array of strings and returns the sets of strings which collide in the hash table in the order they appeared in the input list.

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

MySQL/PHP Database Applications

Authors: Jay Greenspan, Brad Bulger

1st Edition

978-0764535376

More Books

Students also viewed these Databases questions