Question: Please solve using c++ Please allow user to Do the following - search for state - delete state - show state hash table The following
Solve the following Problem a) Some of the attributes of a state in the United States are its name, capital, area, year of admission to the union, and the order of admission to the union. Design the class stateData to keep track of the information for a state. Your class must include appropriate functions to manipulate the state's data, such as the functions setstateInfo, getStatelnfo, and so on. Also, overload the relational operators to compare two states by their name. For easy input and output, overload the stream operators. b) Use Hashing to create a hash table to keep track of each state's information. Select and implement a hash function and a collision resolution method that can be used to implement this problem. Use the state's name (as described in class stateData in part a) as the key to determine the hash address. You may assume that a state's name is a string of no more than 15 characters
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
