Question: Write a perfect hash function to hash 5 by 5 tic tac toe boards, i.e. 5 by 5 arrays of char where each element has

Write a perfect hash function to hash 5 by 5 tic tac toe boards, i.e. 5 by 5 arrays of char where each element has one of three values ('X', 'O' or '_').

Perfect means no two distinct boards hash to the same value, provided a big enough hash table size. To avoid integer overflow, you can use long long int rather than int as the return type and the size parameter type.

Your function will have prototype long long int hashBoard(char[][5], long long int size).

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!