-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLab 14 Hashing 2.cpp
More file actions
330 lines (327 loc) · 6.26 KB
/
Lab 14 Hashing 2.cpp
File metadata and controls
330 lines (327 loc) · 6.26 KB
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
#include<iostream>
using namespace std;
class Linear
{
public:
const int size = 10;
int data;
int i;
int* arr;
Linear()
{
data = 0;
i = 0;
arr = new int[size];
for (int j = 0; j < size; j++)
{
arr[j] = -1;
}
}
void Insert(int a)
{
data = a;
a = a % size;
bool cond1 = 1;
while (cond1)
{
if (arr[a] != -1)
{
i++;
a = data % size;
a = a + i;
if (a >= size)
a = a % size;
}
else if (arr[a] == -1)
cond1 = 0;
}
arr[a] = data;
i = 0;
}
bool Search(int a)
{
data = a;
a = a % size;
bool cond2 = 1;
while (cond2)
{
if (arr[a] == data)
{
cond2 = 0;
return 1;
}
else if (arr[a] == -1)
{
cond2 = 0;
return 0;
}
else
{
i++;
a = data % size;
a = a + i;
if (a >= size)
a = a % size;
}
}
}
void Delete(int a)
{
data = a;
a = a % size;
bool cond2 = 1;
while (cond2)
{
if (arr[a] == data)
{
cond2 = 0;
arr[a] = -1;
}
else if (arr[a] == -1)
{
cond2 = 0;
cout << "Does not exist" << endl;
}
else
{
i++;
a = data % size;
a = a + i;
if (a >= size)
a = a % size;
}
}
}
void Dislay()
{
cout << "Hashing Table is" << endl;
for (int j = 0; j < size; j++)
{
if(arr[j]!=-1)
cout << arr[j] << " ";
else
cout << " " << " ";
}
}
};
class quadratic
{
public:
const int size = 10;
int data;
int i;
int* arr;
quadratic()
{
data = 0;
i = 0;
arr = new int[size];
for (int j = 0; j < size; j++)
{
arr[j] = -1;
}
}
void Insert(int a)
{
data = a;
a = a % size;
bool cond1 = 1;
while (cond1)
{
if (arr[a] != -1)
{
i++;
a = data % size;
a = a + (i*i);
if (a >= size)
a = a % size;
}
else if (arr[a] == -1)
cond1 = 0;
}
arr[a] = data;
i = 0;
}
bool Search(int a)
{
data = a;
a = a % size;
bool cond2 = 1;
while (cond2)
{
if (arr[a] == data)
{
cond2 = 0;
return 1;
}
else if (arr[a] == -1)
{
cond2 = 0;
return 0;
}
else
{
i++;
a = data % size;
a = a + (i*i);
if (a >= size)
a = a % size;
}
}
}
void Delete(int a)
{
data = a;
a = a % size;
bool cond2 = 1;
while (cond2)
{
if (arr[a] == data)
{
cond2 = 0;
arr[a] = -1;
}
else if (arr[a] == -1)
{
cond2 = 0;
cout << "Does not exist" << endl;
}
else
{
i++;
a = data % size;
a = a + (i*i);
if (a >= size)
a = a % size;
}
}
}
void Dislay()
{
cout << "Hashing Table is" << endl;
for (int j = 0; j < size; j++)
{
if (arr[j] != -1)
cout << arr[j] << " ";
else
cout << " " << " ";
}
}
};
int main()
{
bool cond1, cond2, cond3;
cond1 = cond2 = cond3 = 1;
int choi1, choi2;
long long int data;
Linear H1;
quadratic H2;
while (cond1)
{
system("cls");
cout << "Select from the following:\n1. Linear Probing.\n2. Quadratic Probing.\n3. Exit.\nEnter the number of selected option:";
cin >> choi1;
system("cls");
switch (choi1)
{
case 1:
cond2 = 1;
while (cond2)
{
system("cls");
cout << "Select from the following:\n1. Insert a data.\n2. Search a data.\n3. Delete a data.\n4. To return to main menu.\nEnter the number of selected option:";
cin >> choi2;
system("cls");
switch (choi2)
{
case 1:
cout << "Enter the data you want to insert:";
cin >> data;
H1.Insert(data);
cout << "If you want to return to Linear Menu press \"1\" or to return to Main Menu press \"0\" :";
cin >> cond2;
break;
case 2:
cout << "Enter the data you want to search:";
cin >> data;
if (H1.Search(data))
cout << "Yes it exist in Hashing Table" << endl;
else
cout << "No it doesnot exist in Hashing Table" << endl;
cout << "If you want to return to Linear Number Menu press \"1\" or to return to Main Menu press \"0\" :";
cin >> cond2;
break;
case 3:
cout << "Enter the roll number you want to delete:";
cin >> data;
H1.Delete(data);
cout << "If you want to return to Linear Menu press \"1\" or to return to Main Menu press \"0\" :";
cin >> cond2;
break;
case 4:
cond2 = 0;
break;
default:
cout << "Wrong number option" << endl;
cout << "If you want to return to Linear Menu press \"1\" or to return to Main Menu press \"0\" :";
cin >> cond2;
break;
}
}
break;
case 2:
cond3 = 1;
while (cond3)
{
system("cls");
cout << "Select from the following:\n1. Insert data.\n2. Search data.\n3. Delete data.\n4. To return to main menu.\nEnter the number of selected option:";
cin >> choi2;
system("cls");
switch (choi2)
{
case 1:
cout << "Enter the data you want to insert:";
cin >> data;
H2.Insert(data);
cout << "If you want to return to Quadratic Menu press \"1\" or to return to Main Menu press \"0\" :";
cin >> cond3;
break;
case 2:
cout << "Enter the data you want to search:";
cin >> data;
if (H2.Search(data))
cout << "Yes it exist in Hashing Table" << endl;
else
cout << "No it doesnot exist in Hashing Table" << endl;
cout << "If you want to return to Quadratic Menu press \"1\" or to return to Main Menu press \"0\" :";
cin >> cond3;
break;
case 3:
cout << "Enter data you want to delete:";
cin >> data;
H2.Delete(data);
cout << "If you want to return to Quadratic Menu press \"1\" or to return to Main Menu press \"0\" :";
cin >> cond3;
break;
case 4:
cond3 = 0;
break;
default:
cout << "Wrong number option" << endl;
cout << "If you want to return to Quadratic Menu press \"1\" or to return to Main Menu press \"0\" :";
cin >> cond3;
break;
}
}
break;
case 3:
cond1 = 0;
break;
default:
cout << "Wrong number option" << endl;
cout << "If you want to return to Main Menu press \"1\" or to exit press \"0\" :";
cin >> cond2;
break;
}
}
}