akosiraff

Download Contributor HashTable

Nov 5th, 2014
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.62 KB | None | 0 0
  1.  
  2. Download: http://solutionzip.com/downloads/contributor-hashtable/
  3. Hash Structure:
  4. At this point, you decide to implement a Hash structure for the contributor data to prepare for searches. You will read the contributor information from a file provided; it is a comma delimited (CSV) file. As each record is read, create a Hash table for the ID field. The limitation for the Hash table is that it has a size of 5, so you need to be able to handle collisions. Collisions should be resolved through the use of a linked list for the ID values (implement this using a stack). Your design should include the following:
  5. A Hash table pointing to a structure for a linked list that contains only the following information:
  6. Each Hash Bucket Collision Item will have the following Information:
  7. ID: Integer; //identifier key for future needs
  8. Hash Bucket Functions/Methods:
  9. Input constructor: //to accept a string for the name and additional information for each contributor (you will only need the ID portion of the input data)
  10. Hash Function constructor: (Hint: You only have 5 Hash buckets, so the function can be a very simple calculation.)
  11. Pop constructor
  12. Push constructor
  13. Print constructor: //to show the contents of a Hash bucket
  14. Deliverables:
  15. A fully documented program to load the Hash table with collisions being handled as a linked list, implemented as a Stack
  16. A test plan to show how the program runs and can be executed
  17. A screenshot showing that the program loaded the data, and after all data is loaded, shows the contents of the first Hash bucket (ideally this is Bucket 0)
  18. Download: http://solutionzip.com/downloads/contributor-hashtable/
Add Comment
Please, Sign In to add comment