CSCI 161 Assignment 6, Spring 1997 DUE: The assignment is due on or before 3am, Thursday Mar 27. This assignment is worth 20 objective points. Your solution will be graded on the basis of its run-time behaviour and on the clarity and simplicity of the source code. Your implementation must have no side effects, including file input or output. See the marking guide in ~csci161/Pex6/markingGuide. With regard to simplicity and clarity, follow the ASAP principle: as simple as possible. INSTRUCTIONS: Issue the command: cp -r ~csci161/HISet . to copy the module directory to your account. Locate to HISet and use the Makefile to test, verify and submit you assignment. Your task is to implement the HISet module according to the module interface specification in ~csci161/HISet/HISetInt.p. Be sure that you make no changes to HISetInt.p. You must use an Open Hashing structure to store the elements of the set. Your code must work for a hash table size between 1 and 100 inclusive. You must use the following hash function: h(x) = x mod hash_table_size The access routine HISInit does NOT have to dispose of any memory associated with an existing hash-table linked-list. The access routine HISDelete must dispose of the memory associated with a deleted node. This assignment is to completed by each student. Submit only one implementation; if you send more than one, we will discard all but the last one. The assignment identifier is CSCI 161 Pex 6 (see Course Information Sheet). Your assignment must be received before the due date and time. In addition, your e-mail must have the assignment identifier as its subject. All other methods of submission will not be accepted. You will receive no credit for an assignment submission that fails to adhere to this convention.