I don't know how to get started on the code for the hash table which will be using chaining. All I know is that I'm creating an inventory system that will store an item's:
1) SKU
2) description
3) cost
4) retail
5) qty on hand
and the SKU number is what is going to be used for storing the items in a hash table. So when a certain SKU is entered, that item associated with that SKU will show the description, cost, retail, and quantity of that item. I've never written code for a hash table so please help.
1) SKU
2) description
3) cost
4) retail
5) qty on hand
and the SKU number is what is going to be used for storing the items in a hash table. So when a certain SKU is entered, that item associated with that SKU will show the description, cost, retail, and quantity of that item. I've never written code for a hash table so please help.