Question

In: Computer Science

C++ only please Description A hash table is a data structure that is used to store...

C++ only please

Description

A hash table is a data structure that is used to store keys/value pairs. It is perfect to use when you have a large amount of directory-type information and the operations you need to perform are to insert, delete, print, and search.

I am giving you all a lot more freedom in this program in that the value held in your hash table can be a pointer to any object created from your own custom class.

Files to Be Included In Your Submission

  • HashTable.h – header file containing your HashTable class template.

  • HashEntry.h – header file containing your HashEntry class template.

  • Classname.h – the specification header file containing your class declaration (name it the same name as your class)

  • Classname.cpp – the implementation file for your class (name it the same name as your class)

  • dataFile.txt – a text file containing the data specific to the class you create. It should have enough data to create 10 objects. (you get 10 points subtracted if you forget to do this!)

  • Main.cpp – contains the main function and any additional functions you created to make the program run

main program (main.cpp)

  • Must contain the main function as well as four other functions.

  • The main function should DYNAMICALLY create a new HashTable object of size 10, which should be created with the template type being a pointer to an object of your custom class.
    HashTable *myTable = new HashTable(10);

  • You should have a menu of options to add data from a file, add one object manually, search for an object, delete an object, print the hash table, or end the program.

  • Validate the user’s choice.

  • Call the appropriate function depending on their choice.

    • You should have one function that will read in data from the file, DYNAMICALLY create an object of your custom class type, and then add this object to the hash table.

    • You should have another function that will allow the user to enter in an object’s data manually and then create an object from this data, and then add to the hash table.

    • The third function should allow the user to search for an object in the hash table.

    • The forth function should allow a user to delete an object from the hash table.

YOUR CUSTOM CLASS (CLASSNAME.H & CLASSNAME.CPP)

Whatever you choose for your class, your objects created from this class MUST have an integer idNum, (which will be used as the key in the hash table) and at least two other attributes. You should write appropriate functions for this class that you will need. You should also have a function that will overload the << (insertion operator) so that the HashTable class can print out your object data in the way that you want.

HASH TABLE TEMPLATE CLASS (HASHTABLE.H)

Your HashTable class must be a template class. The attributes include an integer table size and a pointer to an array of pointers to HashEntry.

You must implement the following functions for HashTable class:

  • Constructor – dynamically allocate the hash table of the parameter size and initialize other variables as necessary.

  • Destructor – release memory that was dynamically allocated in the HashTable class

  • T getValue(int key) – send in a key, return the value in the hash table at that key

  • void putValue(int key, T value) – inserts into the hash table using the hash function key%10.

  • void removeValue(int key) – removes a value at the given key in the hash table

  • void printHashTable() – prints out the hash table in a way that is easy to see which bucket objects were placed in and also indicates which buckets are still NULL

HASH ENTRY TEMPLATE CLASS (HASHENTRY.H)

Your HashEntry class must be a template class, which describes an entry into the hash table. The attributes include an integer key, and the value is of the template type. Also, since the HashTable class will be using chaining, then you will also have a pointer to the next HashEntry as an attribute.

You must implement the following functions for HashEntry class:

  • Constructor – initializes the key, value, and next pointer. The key & value is sent to the constructor

  • Getter functions (to get the key, to get the value, to get next pointer value)

  • Setter functions (setNext & setValue)

Sample Output (I used the creature class for my class)

CREATURE MANAGEMENT MENU

1. Add Creatures From File

2. Add Creature Manually

3. Search for Creature

4. Delete a Creature

5. Print Hash Table

6. End Program

CHOOSE 1-6: 1

Entering creature with ID 797 and name Banshee

Entering creature with ID 841 and name Beholder

Entering creature with ID 988 and name Mike Wazowski

Entering creature with ID 412 and name Sasquatch

Entering creature with ID 358 and name Troll

Entering creature with ID 325 and name Unicorn

6 creatures from creatureFile.txt have been added to the hash table.

CREATURE MANAGEMENT MENU

1. Add Creatures From File

2. Add Creature Manually

3. Search for Creature

4. Delete a Creature

5. Print Hash Table

6. End Program

CHOOSE 1-6: 2

KEY: Siren

Invalid key. Must be an integer.

KEY: 111

NAME: Siren

DESCRIPTION: Beautiful, horrible monster

LIFE POINTS: 3945

HIT POINTS: 344

CREATURE MANAGEMENT MENU

1. Add Creatures From File

2. Add Creature Manually

3. Search for Creature

4. Delete a Creature

5. Print Hash Table

6. End Program

CHOOSE 1-6: 5

----------

BUCKET 0 NULL

BUCKET 1 ---->ID: 841, NAME: Beholder---->ID: 111, NAME: Siren

BUCKET 2 ---->ID: 412, NAME: Sasquatch

BUCKET 3 NULL

BUCKET 4 NULL

BUCKET 5 ---->ID: 325, NAME: Unicorn

BUCKET 6 NULL

BUCKET 7 ---->ID: 797, NAME: Banshee

BUCKET 8 ---->ID: 988, NAME: Mike Wazowski---->ID: 358, NAME: Troll

BUCKET 9 NULL

----------

CREATURE MANAGEMENT MENU

1. Add Creatures From File

2. Add Creature Manually

3. Search for Creature

4. Delete a Creature

5. Print Hash Table

6. End Program

CHOOSE 1-6: 2

KEY: 781

NAME: Pumpkin Face

DESCRIPTION: Horrible pumpkin-looking monster who likes to eat children.

LIFE POINTS: 321

HIT POINTS: 3945

CREATURE MANAGEMENT MENU

1. Add Creatures From File

2. Add Creature Manually

3. Search for Creature

4. Delete a Creature

5. Print Hash Table

6. End Program

CHOOSE 1-6: 5

----------

BUCKET 0 NULL

BUCKET 1 ---->ID: 841, NAME: Beholder---->ID: 111, NAME: Siren---->ID: 781, NAME: Pumpkin Face

BUCKET 2 ---->ID: 412, NAME: Sasquatch

BUCKET 3 NULL

BUCKET 4 NULL

BUCKET 5 ---->ID: 325, NAME: Unicorn

BUCKET 6 NULL

BUCKET 7 ---->ID: 797, NAME: Banshee

BUCKET 8 ---->ID: 988, NAME: Mike Wazowski---->ID: 358, NAME: Troll

BUCKET 9 NULL

----------

CREATURE MANAGEMENT MENU

1. Add Creatures From File

2. Add Creature Manually

3. Search for Creature

4. Delete a Creature

5. Print Hash Table

6. End Program

CHOOSE 1-6: 3

What is the key of the creature you are searching for? 3

There are no creatures with that key in the table.

CREATURE MANAGEMENT MENU

1. Add Creatures From File

2. Add Creature Manually

3. Search for Creature

4. Delete a Creature

5. Print Hash Table

6. End Program

CHOOSE 1-6: 3

What is the key of the creature you are searching for? 358

ID: 358

NAME: Troll

DESCRIPTION:

Ugly and big. Sometimes smell bad.

LIFE POINTS: 1500

HIT POINTS: 80

CREATURE MANAGEMENT MENU

1. Add Creatures From File

2. Add Creature Manually

3. Search for Creature

4. Delete a Creature

5. Print Hash Table

6. End Program

CHOOSE 1-6: 4

The following is a list of all the creatures you take care of:

----------

BUCKET 0 NULL

BUCKET 1 ---->ID: 841, NAME: Beholder---->ID: 111, NAME: Siren---->ID: 781, NAME: Pumpkin Face

BUCKET 2 ---->ID: 412, NAME: Sasquatch

BUCKET 3 NULL

BUCKET 4 NULL

BUCKET 5 ---->ID: 325, NAME: Unicorn

BUCKET 6 NULL

BUCKET 7 ---->ID: 797, NAME: Banshee

BUCKET 8 ---->ID: 988, NAME: Mike Wazowski---->ID: 358, NAME: Troll

BUCKET 9 NULL

----------

What is the ID of the creature you wish to remove?

CREATURE ID: 358

You have removed the creature.

CREATURE MANAGEMENT MENU

1. Add Creatures From File

2. Add Creature Manually

3. Search for Creature

4. Delete a Creature

5. Print Hash Table

6. End Program

CHOOSE 1-6: 5

----------

BUCKET 0 NULL

BUCKET 1 ---->ID: 841, NAME: Beholder---->ID: 111, NAME: Siren---->ID: 781, NAME: Pumpkin Face

BUCKET 2 ---->ID: 412, NAME: Sasquatch

BUCKET 3 NULL

BUCKET 4 NULL

BUCKET 5 ---->ID: 325, NAME: Unicorn

BUCKET 6 NULL

BUCKET 7 ---->ID: 797, NAME: Banshee

BUCKET 8 ---->ID: 988, NAME: Mike Wazowski

BUCKET 9 NULL

----------

CREATURE MANAGEMENT MENU

1. Add Creatures From File

2. Add Creature Manually

3. Search for Creature

4. Delete a Creature

5. Print Hash Table

6. End Program

CHOOSE 1-6: 6

GOODBYE!!

Solutions

Expert Solution

HashTable.h

#pragma once
#ifndef HASHTABLE_H
#define HASHTABLE_H
#include "HashEntry.h"
template<class T>
class HashTable {
private:
   HashEntry<T> **tablepointer;
   int size;
   int count;
public:
   HashTable();
   HashTable(int size);
   void setsize(int s);
   int getsize();
   void putValue(int key, T val);
   void remove(int key);
   T getValue(int key);
   void printTable();
   ~HashTable();
};
template<class T>
HashTable<T>::HashTable()
{
   tablepointer = new HashEntry<T>*[10];
   size = 10;
   for (int i = 0; i < size; i++)
   {
       tablepointer[i] = NULL;
   }
   count = 0;
}
template<class T>
HashTable<T>::HashTable(int s)
{
   tablepointer = new HashEntry<T>*[s];
   size = s;
   for (int i = 0; i < size; i++)
   {
       tablepointer[i] = NULL;
   }
   count = 0;
}
template<class T>
void HashTable<T>::setsize(int s)
{
   size = s;
}
template<class T>
int HashTable<T>::getsize()
{
   return size;
}

template<class T>
void HashTable<T>::putValue(int key, T val)
{
   int pos = key % size;
   HashEntry<T> *newentry = new HashEntry<T>(key,val);
   if (tablepointer[pos] == NULL)
   {
       tablepointer[pos] = newentry;
   }
   else
   {
       HashEntry<T> *temp = tablepointer[pos];
       while (temp->getNext() != NULL)
       {
           temp = temp->getNext();
       }

       temp->setNext(newentry);
       newentry->setPrev(temp);
   }
   count++;
}

template<class T>
void HashTable<T>::remove(int key)
{
   int pos = key % size;
   bool flag = false;
   if (tablepointer[pos] != NULL)
   {

       HashEntry<T> *temp = tablepointer[pos];
       while (temp != NULL)
       {
           if (temp->getKey() == key)
           {
               flag = true;
               break;
           }
       }
       if (flag)
       {
           HashEntry<T> *prevtemp = temp->getPrev();
           HashEntry<T> *nexttemp = temp->getNext();
           if (prevtemp == NULL)
           {
               tablepointer[pos] = nexttemp;
           }
           else
           {
               prevtemp->setNext(nexttemp);
           }
           if (nexttemp != NULL)
           {
               nexttemp->setPrev(prevtemp);
           }
           cout << "Value removed : " << temp->getValue() << endl;
           count--;
       }
       else
       {
           cout << "Entry not found in the hash table\n";
       }
   }
}

template<class T>
T HashTable<T>::getValue(int key)
{
   int pos = key % size;
   if (tablepointer[pos] != NULL)
   {
       HashEntry<T> *temp = tablepointer[pos];
       while (temp != NULL)
       {
           if (temp->getKey() == key)
           {
               return temp->getValue();
           }
           temp = temp->getNext();
       }
   }
   return T();
}

template<class T>
void HashTable<T>::printTable()
{
   cout << "Count of elements : " << count << endl;
   for (int i = 0; i < size; i++)
   {
       HashEntry<T> *temp = tablepointer[i];
       cout << "BUCKET " << i;
       if (temp == NULL)
       {
           cout << "-->NULL" << endl;
       }
       else {

           while (temp != NULL)
           {
               cout << "-->" << temp->getValue();
               temp = temp->getNext();
           }
       }
       cout << endl;

   }
}

template<class T>
HashTable<T>::~HashTable()
{
   delete(tablepointer);
}


#endif // HASHTABLE_H

HashEntry.h

#pragma once
#ifndef HASHENTRY_H
#define HASHTENTRY_H

template<class T>
class HashEntry {
   T value;
   int key;
   HashEntry<T> *next;
   HashEntry<T> *prev;
public:
   HashEntry()
   {
       key = -1;
       next = NULL;
       prev = NULL;
   }
   HashEntry(int key_temp, T value_temp)
   {
       value = value_temp;
       key = key_temp;
       next = NULL;
       prev = NULL;
   }
   int getKey()
   {
       return key;
   }
   T getValue()
   {
       return value;
   }
   HashEntry<T>* getNext()
   {
       return next;
   }
   HashEntry<T>* getPrev()
   {
       return prev;
   }
   void setValue(T value_temp)
   {
       value = value_temp;
   }
   void setNext(HashEntry<T>* next_temp)
   {
       next = next_temp;
   }
   void setPrev(HashEntry<T>* prev_temp)
   {
       prev = prev_temp;
   }
};
#endif // HASHENTRY_H
Item.h//Classname.h

#pragma once
#pragma once
#ifndef ITEM_H
#define ITEM_H
#include<string>
using namespace std;
class Item {
private:
   int id;
   string name;
   int quan;

public:

   Item();
   Item(int id_temp, string name_temp, int quan_temp);
   int getId();
   void setId(int id_temp);
   string getName();
   void setName(string name_temp);
   int getQuan();
   void setQuan(int quan_temp);
   friend ostream & operator << (ostream &out, const Item &i);
   friend istream & operator >> (istream &in, Item &i);


};
#endif

Item.cpp//Classname.cpp

#pragma once
#include "Item.h"
#include <iostream>
using namespace std;
Item::Item()
{
   name = "";
   quan = 0;
}

Item::Item(int id_temp, string name_temp, int quan_temp)
{
   id = id_temp;
   name = name_temp;
   quan = quan_temp;
}

int Item::getId()
{
   return id;
}

void Item::setId(int id_temp)
{
   id = id_temp;
}

string Item::getName()
{
   return name;
}

void Item::setName(string name_temp)
{
   name = name_temp;
}

int Item::getQuan()
{
   return quan;
}

void Item::setQuan(int quan_temp)
{
   quan = quan_temp;
}

ostream & operator<<(ostream & out, const Item & i)
{
   out << "Item ID : " << i.id << ",";
   out << "Item Name : " << i.name << ",";
   out << "Item Quantity : " << i.quan << "\t";
   out << endl;
   return out;
}

istream & operator>>(istream & in, Item & i)
{
   cout << "\nEnter Item id : ";
   in >> i.id;
   cout << "\nEnter Name : ";
   in >> i.name;
   cout << "\nEnter Quantity :";
   in >> i.quan;
   return in;
}
Main.cpp

// Main.cpp : This file contains the 'main' function. Program execution begins and ends there.
//

#include <iostream>
#include <fstream>
#include "Item.h"
#include "HashTable.h"
using namespace std;

HashTable<Item> *myTable = new HashTable<Item>(10);

void readingFromfile() {
   string path;
   cout << "Enter path :";
   cin >> path;

   fstream file;
   file.open(path);
   string line;
   int id;
   string name;
   int quan;
   while (!file.eof())
   {
       file >> id >> name >> quan;
       Item temp(id, name, quan);
       myTable->putValue(temp.getId(), temp);
   }
   file.close();
}
void AddingManually() {
   Item temp;
   cin >> temp;
   myTable->putValue(temp.getId(), temp);
}
void Search() {
   int id;
   cout << "Enter Item Id" << endl;
   cin >> id;

   if (myTable->getValue(id).getName() == "")
   {
       cout << "Item not found" << endl;
   }
   else
   {

       cout << myTable->getValue(id);
   }
}
void Remove() {
   int id;
   cout << "Enter Item Id" << endl;
   cin >> id;
   myTable->remove(id);
}
int main()
{
   //HashTable<Item> table(10);

   while (true)
   {
       cout << "1. Add From File \n2.Add Manually\n3. Search \n4. Delete \n5. Print Hash Table \n6. End Program\n";
       int choice;
       cin >> choice;
       switch (choice)
       {
       case 1:
       {
           readingFromfile();
           break;
       }
       case 2:
       {
           AddingManually();
           break;
       }
       case 3:
       {
           Search();
           break;
       }
       case 4:
       {
           Remove();
           break;
       }
       case 5:
       {
           myTable->printTable();
           break;
       }
       case 6:
       {
           return 1;
       }
       }
   }
}
dataFile.txt

1001 Pencil 25
34 File 35

OUTPUT:

1. Add From File
2.Add Manually
3. Search
4. Delete
5. Print Hash Table
6. End Program
1
Enter path :data.txt
1. Add From File
2.Add Manually
3. Search
4. Delete
5. Print Hash Table
6. End Program
5
Count of elements : 2
BUCKET 0-->NULL

BUCKET 1-->Item ID : 1001,Item Name : Pencil,Item Quantity : 25

BUCKET 2-->NULL

BUCKET 3-->NULL

BUCKET 4-->Item ID : 34,Item Name : File,Item Quantity : 35

BUCKET 5-->NULL

BUCKET 6-->NULL

BUCKET 7-->NULL

BUCKET 8-->NULL

BUCKET 9-->NULL

1. Add From File
2.Add Manually
3. Search
4. Delete
5. Print Hash Table
6. End Program
2

Enter Item id : 56

Enter Name : Spray

Enter Quantity :54
1. Add From File
2.Add Manually
3. Search
4. Delete
5. Print Hash Table
6. End Program
3
Enter Item Id
56
Item ID : 56,Item Name : Spray,Item Quantity : 54
1. Add From File
2.Add Manually
3. Search
4. Delete
5. Print Hash Table
6. End Program
4
Enter Item Id
1001
Value removed : Item ID : 1001,Item Name : Pencil,Item Quantity : 25

1. Add From File
2.Add Manually
3. Search
4. Delete
5. Print Hash Table
6. End Program
5
Count of elements : 2
BUCKET 0-->NULL

BUCKET 1-->NULL

BUCKET 2-->NULL

BUCKET 3-->NULL

BUCKET 4-->Item ID : 34,Item Name : File,Item Quantity : 35

BUCKET 5-->NULL

BUCKET 6-->Item ID : 56,Item Name : Spray,Item Quantity : 54

BUCKET 7-->NULL

BUCKET 8-->NULL

BUCKET 9-->NULL

1. Add From File
2.Add Manually
3. Search
4. Delete
5. Print Hash Table
6. End Program
6


Related Solutions

language c++(Data structure) You have to read a file and store a data in character array...
language c++(Data structure) You have to read a file and store a data in character array ( you cant initialize a character array, you have to code generically) code must be generic u must read a file onece u cant use built in function etc string, code in classes if u initialized a char array or ur code doesn't run i will dislike and report u you can use link list to store data
Please consider the following data. The data will be used for the entire problem. Only move...
Please consider the following data. The data will be used for the entire problem. Only move forward the viable investments to the next capital rationing model. Meaning if the investment passes the capital rationing test, put that investment into the next model. i.e. if one of the investments doesn’t pass the payback test, don’t move it forward to ROR. Bonnet Corporation is considering 8 different investments. Here is the data for the 8 investments: McCoy Stede Rackham Lavasseur Anthos Investment...
[ Write in C not C++] 1. Define a C structure Covid19Info to store the information...
[ Write in C not C++] 1. Define a C structure Covid19Info to store the information of COVID 19 cases of countries around the world. It keeps the name of the country, number of COVID 19 cases, number of deaths, current test positive rate, etc. After defining the structure, declare a variable of Covid19Info type with some initial values for Bangladesh. [8]
Solve in C++ program. Modify the use of queue data structure such that the array used...
Solve in C++ program. Modify the use of queue data structure such that the array used to implement the queue is dynamically allocated for a fast food autoservice
Please review the hash technique. I give you this phrase : If quadratic probing is used,...
Please review the hash technique. I give you this phrase : If quadratic probing is used, and the table size is prime, then a new element can always be inserted if the table is at least half empty. If you disagree with this phrase, please give or provide a counter example to prove that it is in fact an incorrect statement. However, if you think that is it right, please show your reasoning behind it and prove it. Please type...
Complete the table by dragging each structure name or description into the appropriate place
Complete the table by dragging each structure name or description into the appropriate place 
(NO CLICKED PHOTOS OR SCREENSHOTS PLEASE, ONLY COMPLETE SOLUTION) The data in the table below presents...
(NO CLICKED PHOTOS OR SCREENSHOTS PLEASE, ONLY COMPLETE SOLUTION) The data in the table below presents the hourly quantity of production for three lines of production processes over the first 4 days in XYZ Company. Answer the questions based on the Excel Output given below. Day Process 1 Process 2 Process 3 1 33 33 28 2 30 35 36 3 28 30 30 4 29 38 34 ANOVA: Single Factor SUMMARY Groups Count Sum Average Variance Process 1 4...
In C++ Use vectors instead of linked lists Create a Hash table program using H(key) =...
In C++ Use vectors instead of linked lists Create a Hash table program using H(key) = key%tablesize with Chaining and Linear probing for a text file that has a list of 50 numbers Ask the user to enter the file name, what the table size is, and which of the two options they want to use between chaining and linear probing
Data Structures: Hashing Exercise: 1. a) Given an empty “separate chaining hash table” of size 10,...
Data Structures: Hashing Exercise: 1. a) Given an empty “separate chaining hash table” of size 10, with hash function                        Location = Number modulus 10 Show the hash table after inserting the following numbers: 21, 18, 27 , 31 , 48, 51 , 37, 98, 17 b) What table size would be better? 11? 12? 20? 2. We want to hash name strings into a chaining hash table of size 10, how would you divide the alphabet into 10 groups?...
Description of Data The data being used for this lab are based on data collected after...
Description of Data The data being used for this lab are based on data collected after the 2009 war ended that was between Israel and the Hamas militias in the Gaza Strip. Responses were obtained from 200 individuals that were exposed to rocket attacks during that period. The variables in the study include: ID: Used to indicate the ID# of the participant family income: The household income of the individuals (expressed in thousands) gender: The gender of the individuals that...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT