-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpass.cpp
110 lines (94 loc) · 2.03 KB
/
pass.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
99
100
101
102
103
104
105
106
107
108
109
110
#include <iostream>
#include <string>
#include <utility>
#include <cstdlib>
#include <cctype>
#include <sstream>
#include "hashtable.h"
using namespace std;
using namespace cop4530;
void Menu();
int main()
{
int capacity;
string s;
char c;
bool num;
stringstream ss;
num = false;
while(!num)
{
cout << "Enter preferred hash table capacity: ";
cin >> s;
for(unsigned int i = 0; i < s.size(); i++)
{
if(!isdigit(s[i]))
{
cout << "*****Error: Invalid capacity. Try again." << endl;
num = false;
break;
}
}
num = true;
}
ss.str(s);
ss >> capacity;
HashTable table(capacity);
while(c != 'x')
{
Menu();
cin >> s;
while(s.size() > 1)
{
cout << "*****Error: Invalid entry. Try again." << endl;
}
c = s[0];
switch(c)
{
case 'l':
table.loadFile( );
break;
case 'a':
table.addUser( );
break;
case 'r':
table.deleteUser( );
break;
case 'c':
table.changePass( );
break;
case 'f':
table.findUser( );
break;
case 'd':
table.printHash( );
break;
case 's':
cout << "Size of hashtable: " << table.size( ) << endl;
break;
case 'w':
table.writeFile( );
break;
case 'x':
break;
default:
cout << "*****Error: Invalid entry. Try again." << endl;
break;
}
}
return(EXIT_SUCCESS);
}
void Menu()
{
cout << "\n\n";
cout << "l - Load From File" << endl;
cout << "a - Add User" << endl;
cout << "r - Remove User" << endl;
cout << "c - Change User Password" << endl;
cout << "f - Find User" << endl;
cout << "d - Dump HashTable" << endl;
cout << "s - HashTable Size" << endl;
cout << "w - Write to Password File" << endl;
cout << "x - Exit program" << endl;
cout << "\nEnter choice : ";
}