Click here to Skip to main content
15,900,906 members

Comments by PinkPrint (Top 9 by date)

PinkPrint 13-Oct-16 22:58pm View    
Oh I see it now. Thank you very much!!
PinkPrint 13-Oct-16 13:09pm View    
But I have used LinearProbing:: in both times whenever I needed to call the HashFunction??

void LinearProbing::InsertWord(string word){
int key= LinearProbing::HashFunction(word,word.length(),HASHSIZE);

int LinearProbing::SearchWord(string word){
int key=LinearProbing::HashFunction(word,word.length(),HASHSIZE);
PinkPrint 27-Nov-15 1:27am View    
It says undefined reference to toString function(). And if doesn't even show the line numbers for the error that's why I don't know what to make of the error message. Thank you
PinkPrint 27-Nov-15 1:26am View    
I have been searching the toString method in Google all day. There is one to_string method in cplusplusreference that doesn't work when I compile it. I have come this forum so that I can get help from real people who are willing to help. I'm sure this is not an exclusive club where few get access. Thank you
PinkPrint 14-Sep-15 14:40pm View    
Thank you.