I've been working on programming a database using hash functions. Today I ran into a problem when trying to pass an array to a function and I was hoping someone could help me out! Here's the problem...
The array I am working with is an array of LinkedLists with a template class ID, which is a object I created. Here is what the declaration looks like for the array.
DoublyLinkedList <ID> HashTable[1000];
The problem I am having is when I try to pass that full array to another function, I'm getting errors that deal with parameters.
I want to pass that full array to a Find and a Delete function. The prototypes are below for the two functions.