-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
74 lines (57 loc) · 1.36 KB
/
main.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#include <iostream>
#include <vector>
#include <cmath>
using namespace std;
struct HashTable
{
vector <vector<int>> hashTable;
HashTable()
{
int noOfBuckets = 10;
hashTable.resize(noOfBuckets);
}
int hashFunction(int key) //Simple hash function to map key to hash table.
{
return key % 7;
}
void insertKey(int key) //Function to insert values into the vector contained by the vector
{
int count = 0;
int index = hashFunction(key);
while(!hashTable[index].empty())
{
index = hashFunction(key) + pow(index, 2);
}
if (count <= 10)
{
hashTable[index].push_back(key);
count++;
}
else
{
cout << "Hash table is full" << endl;
}
}
void displayHashTable()
{
for (int hashIndex = 0; hashIndex < hashTable.size(); hashIndex++)
{
cout << hashIndex << " : ";
for (int data = 0; data < hashTable[hashIndex].size(); data++)
{
cout << hashTable[hashIndex][data] << " ";
}
cout << endl;
}
}
};
//Driver code
int main()
{
HashTable ht;
ht.insertKey(22);
ht.insertKey(30);
ht.insertKey(50);
ht.displayHashTable();
return 0;
}