-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathhash.cpp
More file actions
426 lines (420 loc) · 9.74 KB
/
hash.cpp
File metadata and controls
426 lines (420 loc) · 9.74 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
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
#include<bits/stdc++.h>
#include<cstdio>
#include<cstdlib>
#include<fstream>
using namespace std;
class Node{
char data;
Node *link;
public:
Node(char);
friend class List;
friend class Hash;
};
Node::Node(char x){
data=x;
link=NULL;
}
class List{
Node *start;
public:
List(){
start=NULL;
}
void pushBack(char);
void sortList();
bool deleteByValue(char);
void display();
int search(char);
int count();
friend class Hash;
};
void List::pushBack(char _data){
Node *temp,*t;
temp=new Node(_data);
if(start==NULL){
start=temp;
return;
}
t=start;
while(t->link!=NULL)
t=t->link;
t->link=temp;
}
int List::search(char key){
Node *t;
int index=0;
for(t=start;t!=NULL;t=t->link){
if(t->data==key)
return index;
index++;
}
return -1;
}
bool List::deleteByValue(char _data){
Node *t,*prev;
if(start==NULL){
cout<<"\nRow Empty";
return false;
}
if(start->data==_data){
t=start;
start=start->link;
t->link=NULL;
delete t;
return true;
}
t=start;
while(t->link!=NULL){
if(t->data==_data){
prev->link=t->link;
return true;
}
prev=t;
t=t->link;
}
if(t->data==_data){
prev->link=NULL;
delete t;
return true;
}
return false;
}
void List::sortList(){
Node *i,*j;
int temp;
if(start==NULL)
return ;
for(i=start;i!=NULL;i=i->link){
for(j=i->link;j!=NULL;j=j->link){
if((i->data)>(j->data)){
temp=j->data;
j->data=i->data;
i->data=temp;
}
}
}
}
int List::count(){
Node *t;
int _count=0;
for(t=start;t!=NULL;t=t->link)
_count++;
return _count;
}
void List::display(){
Node* t;
cout<<" ----> ";
for(t=start;t!=NULL;t=t->link)
cout<<t->data<<" ----> ";
cout<<"#";
}
class Hash{
int rows;
List *table;
public:
Hash();
Hash(int);
void insert(char);
void display();
void sortHash();
void free();
void demoMenu();
void hashingMenu();
bool erase(char);
int search(char);
string hashGenerator(string);
string returnHash();
int hashFunction(int);
string hashChar(char);
int count();
};
Hash::Hash(){
rows=0;
table=NULL;
}
Hash::Hash(int r){
rows=r;
table=new List[rows];
}
int Hash::hashFunction(int key){
return (key%rows);
}
void Hash::free(){
for(int i=0;i<rows;i++)
table[i].start=NULL;
}
string Hash::hashChar(char c){
string str;
char code[4];
int ascii=(int)c;
if(c==' ')
return "9x";
else if(c>='A'&&c<='Z'){
code[0]=((ascii)%26)+65;
code[1]=((ascii-17)%26)+65;
code[2]=((ascii+13)%26)+65;
}
else if(c>='a'&&c<='z'){
code[0]=((ascii)%26)+97;
code[1]=((ascii-17)%26)+97;
code[2]=((ascii+13)%26)+97;
}
else{
stringstream buffer;
buffer<<ascii;
buffer>>str;
return str;
}
code[3]='\0';
str=code;
return str;
}
void Hash::insert(char key){
int index=hashFunction(key);
table[index].pushBack(key);
}
bool Hash::erase(char key){
int index=hashFunction(key);
return table[index].deleteByValue(key);
}
int Hash::search(char key){
int index=hashFunction(key);
return table[index].search(key);
}
void Hash::demoMenu(){
cout<<"\n------------------DEMONSTRATION--------------------";
cout<<"\n| Press 1: Insert Character into HashTable |";
cout<<"\n| Press 2: Display HashTable Arrangement |";
cout<<"\n| Press 3: Count Entries in HashTable |";
cout<<"\n| Press 4: Sort HashTable |";
cout<<"\n| Press 5: Search element in HashTable |";
cout<<"\n| Press 6: Delete element from HashTable |";
cout<<"\n| Press 9: Display Options |";
cout<<"\n| Press 0: Exit From Demonstration |";
cout<<"\n---------------------------------------------------";
}
void Hash::hashingMenu(){
cout<<"\n----------------PASSWORD HASHING-------------------";
cout<<"\n| Press 1: Create Password Hashed File |";
cout<<"\n| Press 2: Change Existing PassWord |";
cout<<"\n| Press 3: Show Hashed Password |";
cout<<"\n| Press 9: Display Options |";
cout<<"\n| Press 0: Exit From Demonstration |";
cout<<"\n---------------------------------------------------";
}
void Hash::display(){
for(int i=0;i<rows;i++){
cout<<i<<":";
table[i].display();
cout<<"\n";
}
}
string Hash::hashGenerator(string str){
for(int i=0;i<str.length();i++)
insert(str[i]);
return returnHash();
}
string Hash::returnHash(){
string str="#";
int key;
string code;
for(int i=0;i<rows;i++){
if(table[i].start!=NULL){
stringstream buffer0;
key=(i+1)^10;
buffer0<<key;
string substr0;
buffer0>>substr0;
str=str+substr0;
Node *t=table[i].start;
for(int j=0;t!=NULL;t=t->link){
stringstream buffer1;
key=(j+1)^7;
buffer1<<key;
string substr1;
buffer1>>substr1;
str=str+substr1;
code=hashChar(t->data);
str=str+code;
j++;
}
}
}
return str;
}
void Hash::sortHash(){
for(int i=0;i<rows;i++)
table[i].sortList();
}
int Hash::count(){
int total=0;
for(int i=0;i<rows;i++)
total+=table[i].count();
return total;
}
class Main{
public:
int demo();
int hashing();
};
int Main::demo(){
int n;
cout<<"\n@DEMONSTRATION";
cout<<"\n\nNote:";
cout<<"\n Hash function used: key % No. of Rows";
cout<<"\n Hence, Any Prime Number is Recommended as No. of Rows\n";
cout<<"\nEnter No. of Rows to construct HashTable: ";
cin>>n;
Hash container(n);
cout<<"\nHashTable With "<<n<<" Rows Created!";
int choice,index;
char key;
container.demoMenu();
do{
cout<<"\n\n@DEMONSTRATION_____________________________________";
cout<<"\nEnter Choice [Press 0:exit|9:Options]: ";
cin>>choice;
switch(choice){
case 1: cout<<"\nEnter Character: ";cin>>key;
container.insert(key);
cout<<key<<" Inserted!";
break;
case 2: container.display();
break;
case 3: cout<<"\nNo. of Entries = "<<container.count();
break;
case 4: container.sortHash();
cout<<"\nHashTable Sorted in Alphabetic order!";
break;
case 5: cout<<"\nEnter Target Element to Search: ";cin>>key;
index=container.search(key);
if(index<0)
cout<<key<<" Not Found in HashTable!";
else
cout<<key<<" Found at:\n Row: "<<container.hashFunction(key)<<"\n Pos: "<<index;
break;
case 6: cout<<"\nEnter Target Element to Delete: ";cin>>key;
if(container.erase(key))
cout<<key<<" Erased from HashTable!";
else
cout<<key<<" Not Found in HashTable!";
break;
case 9: container.demoMenu();
break;
case 0: cout<<"\n---------------------------------------------------\n";
break;
default: cout<<"\nInvalid Choice! Try Again!";
}
}while(choice);
container.free();
cout<<"\n";
return 0;
}
int Main::hashing(){
string pass0,hash0,newPass,newHash;
Hash container(13);
int choice;
fstream file;
cout<<"\n@HASHING";
container.hashingMenu();
do{
cout<<"\n\n@HASHING__________________________________________";
cout<<"\nEnter Choice [Press 0:exit|9:Options]: ";
cin>>choice;
switch(choice){
case 1: file.open("password_hash.txt",ios::in|ios::out|ios::ate);
if(!file.tellp()){
cout<<"\nEnter PassWord: ";cin>>pass0;
hash0=container.hashGenerator(pass0);
file<<hash0;
cout<<"\nPassWord Set Successfully!";
}
else
cout<<"\nPassWord Already Exists!";
file.close();
container.free();
break;
case 2: file.open("password_hash.txt",ios::in|ios::out|ios::ate);
if(file.tellp()){
string currentPass,currentHash,oldHash;
file.close();
file.open("password_hash.txt",ios::in);
file>>oldHash;
cout<<"\nEnter Current PassWord: ";cin>>currentPass;
currentHash=container.hashGenerator(currentPass);
file.close();
container.free();
if(currentHash==oldHash){
cout<<"\nEnter New PassWord: ";cin>>newPass;
newHash=container.hashGenerator(newPass);
file.open("password_hash.txt",ios::out|ios::trunc);
file<<newHash;
file.close();
cout<<"\nPassWord Changed Successfully!";
}
else
cout<<"\nWrong PassWord! Try Again.";
}
else
cout<<"\nPassWord Doesn't Exists.";
file.close();
container.free();
break;
case 3: file.open("password_hash.txt",ios::in|ios::out|ios::ate);
if(file.tellp()){
file.close();
string currentHash;
file.open("password_hash.txt",ios::in);
file>>currentHash;
cout<<"\nHashed PassWord: "<<currentHash;
file.close();
}
else
cout<<"\nPassWord Doesn't Exists.";
file.close();
break;
case 9: container.hashingMenu();
break;
case 0: cout<<"\n---------------------------------------------------\n";
break;
default: cout<<"\nInvalid Choice! Try Again!";
}
}while(choice);
container.free();
cout<<"\n";
return 0;
}
int main(){
Main driver;
fstream file;
file.open("password_hash.txt",ios::out|ios::app);
file.close();
int choice;
cout<<"\n@ MAIN MENU\n";
cout<<"\n-------------------HASH TABLES---------------------";
cout<<"\n| Press 1: Demonstration of DataStructure |";
cout<<"\n| Press 2: Simulate PassWord Hashing |";
cout<<"\n| Press 0: Exit From Program |";
cout<<"\n---------------------------------------------------";
cout<<"\nEnter Choice: ";cin>>choice;
while(choice){
switch(choice){
case 1: driver.demo();
cout<<"\n@ MAIN MENU\n";
break;
case 2: driver.hashing();
cout<<"\n@ MAIN MENU\n";
break;
default: cout<<"\nInvalid Choice! Try Again!";
}
cout<<"\n-------------------HASH TABLES---------------------";
cout<<"\n| Press 1: Demonstration of DataStructure |";
cout<<"\n| Press 2: Simulate PassWord Hashing |";
cout<<"\n| Press 0: Exit From Program |";
cout<<"\n---------------------------------------------------";
cout<<"\nEnter Choice: ";cin>>choice;
}
cout<<"\n-----------------------END-------------------------\n";
return 0;
}