Question: NEED HELP WITH HashTable.cpp #include #include #include #include #include Hash.h using namespace std; /**************************************************************** * CONSTRUCTOR ****************************************************************/ Hash::Hash(int _bNo) { } /**************************************************************** * DESTRUCTOR ****************************************************************/
NEED HELP WITH HashTable.cpp
#include
#include
#include
#include
#include "Hash.h"
using namespace std;
/****************************************************************
* CONSTRUCTOR
****************************************************************/
Hash::Hash(int _bNo)
{
}
/****************************************************************
* DESTRUCTOR
****************************************************************/
Hash::~Hash()
{
// Write code to remove and deallocate everything
}
void Hash::Insert(int toInsert)
{
// Write your code here
}
bool Hash::Delete(int toDelete)
{
// Write your code here
return true;
}
bool Hash::Search(int key, int& _bucket, int& _pos)
{
// Write your code here
return true;
}
void Hash::Print()
{
// Write your code here
}

Examples of input and output Input 2 i 4 i 2 i 6 i 3 0 d 5 d 2 Output 1:3 2 FOUND AT 0,1 7 NOT FOUND 5 DELETE FAILED 2 DELETED 0 6->4 13
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
