CSc 3320 System-Level Programming
Summer 1999
Homework #5
Due: 2 August 1999 (Monday)
Write a C program that implements a menu-based application to manipulate a set of suppliers. Each supplier is a fixed length record defined as follows:
#define MAXNUM 11 /* Size of sno field */ #define MAXNAME 31 /* Size of sname field */ struct supp_element_type { /* supplier element type */ char sno[MAXNUM]; char sname[MAXNAME]; };This time, you need to implement the set using a CLOSED HASH table stored in a file.
Algorithm for Member: 1. Use hash function to locate bucket 2. Starting from the bucket, search for the supplier until is is found or a VACANT location is found (skipping over DELETED entries) Algorithm for Insert: 1. Use hash function to locate bucket 2. Starting from the bucket, search for the supplier until is is found or a VACANT location is found (skipping over DELETED entries) 3. if (not found) then 3.1 Start all over again from the initial bucket and search for a DELETED or VACANT entry; 3.2 if a DELETED or VACANT entry is found, then insert the new supplier here Algorithm for Delete: 1. Use hash function to locate bucket 2. Starting from the bucket, search for the supplier until is is found or a VACANT location is found (skipping over DELETED entries) 2. if found then mark the entry DELETEDYou will need to download the following files for this assignment: