When I run my program I get the message Killed with some information about the script. After doing some research on the problem, I found out that I wasn't deleting my dynamically allocated variables (stupid me!). However, Now, I feel like I have taken care of that problem but I am still getting the Killed message in the terminal when I use Linux.
//does the of the manipulation of the load factor.
for (int tableSize = fileLength; tableSize < fileLength * 2; tableSize = tableSize + 500)
{
//creates hash tables to be reused for each of the trials.
for(int fileNum = 0; fileNum < NUMTIMES; fileNum++)
{
Array_HashTable* linear_div_hash = new Array_HashTable(tableSize);
LinkedList_HashTable *chain_div_hash = new LinkedList_HashTable(tableSize);
Array_HashTable *doubleHash = new Array_HashTable(tableSize);
LinkedList_HashTable *mult_hash = new LinkedList_HashTable(tableSize);
//Does the hashing for each of the files created.
for (int index = 0; index < fileLength; index++)
{
linear_div_hash -> Linear_ProbeDH(read[fileNum][index]);
chain_div_hash -> Division_Hash(read[fileNum][index]);
doubleHash -> Double_Hash(read[fileNum][index]);
mult_hash -> Mulitplication_Hash(read[fileNum][index]);
}//ends the index for loop.
optimalOutput("VariableSizeLinearCollisionData", fileLength, tableSize, linear_div_hash -> getCollisions(), fileAppendage);
optimalOutput("VariableSizeDoubleCollisionData", fileLength, tableSize, doubleHash -> getCollisions(), fileAppendage);
optimalOutput("VariableSizeDivisionChainingCollisionData", fileLength, tableSize, chain_div_hash -> getCollisions(), fileAppendage);
optimalOutput("VariableSizeMultiplicationChainingCollisionData", fileLength, tableSize, mult_hash -> getCollisions(),fileAppendage);
linear_div_hash -> EndArray_HashTable();
chain_div_hash-> EndLinkedList_HashTable();
doubleHash -> EndArray_HashTable();
mult_hash-> EndLinkedList_HashTable();
delete linear_div_hash;
delete chain_div_hash ;
delete doubleHash ;
delete mult_hash ;
}//ends the fileNum for loop
}//ends the parent for loop with the size as the variable.
Basically the code works like this, the first for loop controls the size of the hash table. The second loop controls which file's data will be used to be hashed. And a hash table object is instantiated for that. The last loop calls the hash functions. Then the stats are outputted to a file using the output function. Then I use a similar function to a destructor to delete the dynamic variables from within my class. I can't use a destructor to do this because it was giving me errors for that. Then I delete the objects.
What can I do?
linear_div_hashand friends as just stack variables (non-pointers)? Since you're not using them outside the scope of theforloop, it would see easier to just let them be stack variables and let them going out of scope invoke the destructor for you. – Thanatos Apr 1 '11 at 21:10