-
Notifications
You must be signed in to change notification settings - Fork 0
/
test3.cpp
executable file
·66 lines (62 loc) · 1.62 KB
/
test3.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
#include "key.h"
#include "container.hpp"
#include "error.h"
#include "auxiliary.h"
#include <iostream>
#include <string>
// A házi feladat működésének komplex bemutatóprogramja
// A program egy adatbázist és a hozzávaló interface-t szimulálja,
// amelyben nevekhez telefonszámokat rendelünk.
// A felhasználó az összes alapvető funkcionalitást kipróbálhatja az interface-en keresztül.
int main(int argc, char const *argv[])
{
init();
Container<StrKey, std::string> database;
menu();
StrKey key;
std::string value;
char userInput;
while (1)
{
try
{
userInput = getUserInput();
}
catch (InvalidInput &e)
{
std::cerr << e.what() << '\n';
}
switch (userInput)
{
case 'H':
key = getKeyFromUser();
value = getValueFromUser();
database.insert_or_assign(key, value);
std::cout << "Sikeresen eltarolva";
break;
case 'L':
key = getKeyFromUser();
try
{
value = database.find(key).second;
std::cout << "A kulcshoz tartozo adat: " << value << std::endl;
}
catch (NotInList &e)
{
std::cerr << e.what() << '\n';
}
break;
case 'P':
std::cout << "Az adatbazisban szereplo adatok:" << std::endl;
database.print();
break;
}
if (userInput == 'Q')
{
break;
}
std::cout << std::endl;
menu();
}
return 0;
}