forked from HarshCasper/NeoAlgo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
double-hashing.cpp
98 lines (92 loc) · 2.27 KB
/
double-hashing.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
#include <iostream>
using namespace std;
int Hash(int x, int s) {
return x % s;
}
int prime(int p, int x) {
return p - (x % p);
}
//Function to insert element in the hash table
void DoubleHashing(int D[], int s, int x, int p) {
int index = Hash(x, s);
int i = 0;
while (D[index] != 0 && D[index] != -1) {
i++;
index = (Hash(x, s) + ( i * prime(p, x) ) ) % s;
}
D[index] = x;
}
//Function to search for an element.
void DHSearch(int D[], int s, int x, int p) {
int index = Hash(x, s);
int i = 0;
while (D[index] != 0) {
if (D[index] == x) {
cout << "Element found at index " << index << endl;
return;
}
i++;
index = (Hash(x, s) + ( i * prime(p, x) ) ) % s;
}
cout << "Element not found " << endl;
}
//Function to delete an element from the Hash Table.
void DHDelete(int D[], int s, int x, int p) {
int index = Hash(x, s);
int i = 0;
while (D[index] != 0) {
if (D[index] == x) {
cout << "Element deleted " << endl;
D[index] = -1;
return;
}
i++;
index = (Hash(x, s) + ( i * prime(p, x) ) ) % s;
}
cout << "Element not found " << endl;
}
//Main Function
//Space Complexity: O(n) - Array for the hash table.
//Time Complexity: O(m) ; Where m is the size of hashtable the algorithm will scan to allocate the elements their correct position.
int main() {
int n, x;
cout << "Hello world!" << endl;
//Enter number of elements you want to insert.
cout << "Enter number of elements " << endl;
cin >> n;
int s = 2 * n;
int p = s;
while (p > 0) {
if ( ( ((p - 1) % 6 == 0) && ((p + 1) % 6 != 0) ) || ( ((p + 1) % 6 == 0) && ((p - 1) % 6 != 0) ))
break;
p--;
}
int L[s] = {0}, Q[s] = {0}, D[s] = {0};
//Enter the elements that you want to insert.
cout << "Enter elements " << endl;
for (int i = 0; i < n; i++) {
cin >> x;
DoubleHashing(D, s, x, p);
}
cout << "Hash Table " << endl;
for (int i = 0; i < s; i++) {
cout << D[i] << endl;
}
cout << "Enter element to be searched in DH : ";
cin >> x;
DHSearch(D, s, x, p);
cout << "Enter element to be deleted in DH : ";
cin >> x;
DHDelete(D, s, x, p);
cout << "The Hash Table is " << endl;
for (int i = 0; i < s; i++) {
cout << D[i] << endl;
}
cout << "Enter element to be added : ";
cin >> x;
DoubleHashing(D, s, x, p);
for (int i = 0; i < s; i++) {
cout << D[i] << endl;
}
return 0;
}