Question

In: Computer Science

Coding language: C++. • Each functionality component must be implemented as a separate function, though the...

Coding language: C++.

Each functionality component must be implemented as a separate function, though the function does not need to be declared and defined separately

• No global variables are allowed

• No separate.hor.hpp are allowed

• You may not use any of the hash tables, or hashing functions provided by the STL or Boost library to implement your hash table

• Appropriate, informative messages must be provided for prompts and outputs

You must implement a hash table using the linear probing collision strategy and the alder-32 hashing function with an R of 2. Your collision strategy must be implemented as a separate function, though it may be implemented inside your insert/search/delete functions, and should halt an insert / search/delete functions, and should halt an insert/search/delete after table size number of collisions. Your hash function must be implemented as a separate function. Your hash table must store positive integers and contain 20 buckets. No global declarations.

Functionality

  • Your int main must have the menu allowing the user to choose between inserting, searching, deleting, and outputting the integers in your hash table. The user should be able to insert, search, delete, and output as many times as they wish. There should be an option to end the program. (Hint: enum/switch may be used).
  • Insert a user specified integer
    • If an insert is rejected due to the collision strategy halting, the function should output that the insert was rejected.
  • Search for the first instance of a user specified integer
    • If found, output that the integer exists upon finding the first instance of the integer.
    • If the collision strategy halts, the function should output that the integer does not exist.
    • No error checking required.
  • Delete the first instance of a user specified integer
    • If the desired integer is found, the function should tombstone the integer’s slot in the hash table, and report that the integer was deleted.
    • If the collision strategy halts, the function should output that the integer does not exist.
    • No error checking required
  • Output all integers in the hash table starting at index 0 along with their index.

Solutions

Expert Solution

SOULTION:

Create class of HashNode that will be the structure of a node.
Create class of Hashmap with all the functions like insert,delete,search,print.
Inside insert function ask user for key and value then find hash value using modulo of bucket size. if the hash value is empty that means no value is inserted in it then insert this otherwise apply linear probing.
Inside search function ask user for key and search in our hTable if its value is -1 then print element does not exist else return vlaue of respective key.
Inside delete function ask user for key value if it is present in hTable then delete it otherwise print element does not exist.
Print is the method used to print all key value pair present in hashmap.
#include<bits/stdc++.h>
using namespace std;


// Declaration of hash node
class HashNode
{
public:
int key;
int value;
HashNode(int key, int value)
{
this->key = key;
this->value = value;
}
};


// Dnode Class Declaration

class Dnode:public HashNode
{
private:
static Dnode *entry;
Dnode():HashNode(-1, -1)
{}
public:
static Dnode *getNode()
{
if (entry == NULL)
entry = new Dnode();
return entry;
}
};
Dnode *Dnode::entry = NULL;

// Bucket size
class Size{
public:
int BucketSize = 20;
};

Size S;

// Hashmap Class with all functions
class HashMap
{
private:
HashNode **htable;
public:
HashMap()
{
htable = new HashNode* [S.BucketSize];
for (int i = 0; i < S.BucketSize; i++)
{
htable[i] = NULL;
}
}

~HashMap()
{
for (int i = 0; i < S.BucketSize; i++)
{
if (htable[i] != NULL && htable[i] != Dnode::getNode()){
cout<<i<<" "<<htable[i]<<endl;
delete htable[i];
}
}
delete[] htable;
}

// Hash Function
int HashFunc(int key)
{
return key % S.BucketSize;
}

//collision function
void collision(int &hval,int &init,int &key,int &deletedindex)
{
while (hval != init && (htable[hval]== Dnode::getNode() || htable[hval]
!= NULL && htable[hval]->key != key))
{
if (init == -1)
init = hval;
if (htable[hval] == Dnode::getNode())
deletedindex = hval;
hval = HashFunc(hval + 1);
}
}

// Insertion
void Insert(int key, int value)
{
int hval = HashFunc(key);
int init = -1;
int deletedindex = -1;
collision(hval,init,key,deletedindex);

if (htable[hval] == NULL || hval == init)
{
if(deletedindex != -1)
htable[deletedindex] = new HashNode(key, value);
else
htable[hval] = new HashNode(key, value);
}

if(init != hval)
{
if (htable[hval] != Dnode::getNode())
{
if (htable[hval] != NULL)
{
if (htable[hval]->key == key)
htable[hval]->value = value;
}
}
else
htable[hval] = new HashNode(key, value);
}
else
{
cout<<" the insert was rejected."<<endl;
return ;
}
}

// Searching
int Search(int key)
{
int hval = HashFunc(key);
int init = -1;
int deleteindex=0;
collision(hval,init,key,deleteindex);

if (htable[hval] == NULL || hval == init)
return -1;
else
return htable[hval]->value;
}

// Deletion
void Remove(int key)
{
int hval = HashFunc(key);
int init = -1;
int deletedindex=0;
collision(hval,init,key,deletedindex);

if (hval != init && htable[hval] != NULL)
{
delete htable[hval];
htable[hval] = Dnode::getNode();
}
else
{
cout<<"the integer does not exist"<<endl;
return ;
}
}


// Print full hash
void print()
{
for (int i = 0; i < S.BucketSize; i++)
{
if (htable[i] != NULL && htable[i]->value!=-1){
cout<<i<<" "<<htable[i]->value<<endl;
}
}
}
};


int main()
{
HashMap hash;
int key, value;
int choice;
while(1)
{
cout<<"\n----------------------"<<endl;
cout<<"Functions on Hash Table"<<endl;
cout<<"\n----------------------"<<endl;
cout<<"1.Insert element into the table"<<endl;
cout<<"2.Search element from the key"<<endl;
cout<<"3.Delete element at a key"<<endl;
cout<<"4.Print Full Hash"<<endl;
cout<<"5.Exit"<<endl;
cout<<"Enter your choice: ";
cin>>choice;
switch(choice)
{
case 1:
cout<<"Enter element to be inserted: ";
cin>>value;
cout<<"Enter key at which element to be inserted: ";
cin>>key;
hash.Insert(key, value);
break;
case 2:
cout<<"Enter key of the element to be searched: ";
cin>>key;
if(hash.Search(key) == -1)
{
cout<<"the integer does not exist "<<key<<endl;
continue;
}
else
{
cout<<"Element at key "<<key<<" : ";
cout<<hash.Search(key)<<endl;
}
break;
case 3:
cout<<"Enter key of the element to be deleted: ";
cin>>key;
hash.Remove(key);
break;
case 4:
hash.print();
break;
case 5:
exit(1);
default:
cout<<"\nEnter correct option\n";
}
}
return 0;
}

THANKYOU


Related Solutions

Coding language: C++. • Each functionality component must be implemented as a separate function, though the...
Coding language: C++. • Each functionality component must be implemented as a separate function, though the function does not need to be declared and defined separately • No global variables are allowed • No separate.hor.hpp are allowed • You may not use any of the hash tables, or hashing functions provided by the STL or Boost library to implement your hash table • Appropriate, informative messages must be provided for prompts and outputs You must implement a hash table using...
Coding language: C++. • Each functionality component must be implemented as a separate function, though the...
Coding language: C++. • Each functionality component must be implemented as a separate function, though the function does not need to be declared and defined separately • No global variables are allowed • No separate.hor.hpp are allowed • You may not use any of the hash tables, or hashing functions provided by the STL or Boost library to implement your hash table • Appropriate, informative messages must be provided for prompts and outputs You must implement a hash table using...
Assignment Write each of the following functions. The function header must be implemented exactly as specified....
Assignment Write each of the following functions. The function header must be implemented exactly as specified. Write a main function that tests each of your functions. Specifics In the main function ask for a filename and fill a list with the values from the file. Each file should have one numeric value per line. This has been done numerous times in class. You can create the data file using a text editor or the example given in class – do...
Write a program that calculates the compound interest for an investment. (C++ coding language) If you...
Write a program that calculates the compound interest for an investment. (C++ coding language) If you deposit an amount of money P , the principal, at an interest rate r then the interest will compound over time. This means that the interest earned each period becomes part of the principal and the next time you get interest you earn interest on the interest. This is known as compounding. The equation for compound interest is ( r)n·t Pn=P0 1+n where P0...
write C++ program using functions (separate function for each bottom) Write a program to find if...
write C++ program using functions (separate function for each bottom) Write a program to find if a number is large word for two given bottom base - bottom1 and bottom2. You can predict that a number, when converted to any given base shall not exceed 10 digits. . the program should ask from user to enter a number that it should ask to enter the base ranging from 2 to 16 after that it should check if the number is...
This question does not need to coding language, just academic writing. For each of the following...
This question does not need to coding language, just academic writing. For each of the following problem statement, propose an appropriate research approach to answer the questions. 1) Mixed methods research is an approach that combines quantitative and qualitative research methods in the same research inquiry. Such work can help develop rich insights into various phenomena of interest that cannot be fully understood using only a quantitative or a qualitative method. Notwithstanding the benefits and repeated calls for such work,...
Must be in C++ (beginners coding class) 8. a. Rewrite the definition of the class complexType...
Must be in C++ (beginners coding class) 8. a. Rewrite the definition of the class complexType so that the arith-metic and relational operators are overloaded as nonmember functions. b. Write the definitions of the member functions of the class complexType as designed in part a. c. Write a test program that tests various operations on the class complexType as designed in parts a and b. Format your answer with two decimal places. (additional info/problem ) does not need to be...
Using Python coding language (with or without Pandas and/or NumPy), 1. Can you define function sleep...
Using Python coding language (with or without Pandas and/or NumPy), 1. Can you define function sleep to tell whether the participant are of the ages through 18 to 60 and sleep less than 6 hours per day? 2. Develop codes to check whether the sleep function you defined can make correct judgement. Make sure you write comments or create informative vairable name so that I can understand how you check the sleep function. (Hints: You can create toy data/dataframe to...
Programming in C language (not C++) Write a runction derinition for a function called SmallNumbers that...
Programming in C language (not C++) Write a runction derinition for a function called SmallNumbers that will use a while loop. The function will prompt the user to enter integers ine by one, until the user enters a negative value to stop. The function will display any integer that is less than 25. Declare and initialize any variables needed. The function takes no arguments and has a void return type.
please answer with coding from The second edition C programming language textbook /* Changes all occurrences...
please answer with coding from The second edition C programming language textbook /* Changes all occurrences of t in s to u, result stored in v * * Example: * * char v[100]; * replace("hello", "el", "abc", v) => v becomes "habclo" * replace("", "el", "abc", v) => v becomes "" (no change) * replace("hello", "abc", "def", v) => v becomes "hello" (no change) * replace("utilities", "ti", "def", v) => v becomes "udeflidefes" * */ void replace(char *s, char *t,...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT