-
Notifications
You must be signed in to change notification settings - Fork 0
/
addingwords.cpp
113 lines (74 loc) · 2.33 KB
/
addingwords.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
111
112
113
#include <iostream>
#include <vector>
#include <map>
#include <string>
using namespace std;
int main() {
map<string, int> Definitions;
map<int, string> InverseDefinitions;
string Command;
bool SkipCommand = false;
while (true) {
if (!SkipCommand)
if (!(cin >> Command))
break;
SkipCommand = false;
if (Command == "clear") {
Definitions.clear();
InverseDefinitions.clear();
}
else if (Command == "def") {
string Name;
int Value;
cin >> Name;
cin >> Value;
if (Definitions.find(Name) != Definitions.end()) {
int PreviousValue = Definitions[Name];
InverseDefinitions.erase(PreviousValue);
}
Definitions[Name] = Value;
InverseDefinitions[Value] = Name;
}
else if (Command == "calc") {
string ExCmd = "";
int Value = 0;
bool Unknown = false;
bool Sign = true;
do {
cin >> ExCmd;
if (ExCmd == "+") {
Sign = true;
std::cout << "+ ";
}
else if (ExCmd == "-") {
Sign = false;
std::cout << "- ";
}
else if (ExCmd == "def") {
Command = "def";
SkipCommand = true;
break;
}
else if (ExCmd != "=") {
std::cout << ExCmd << ' ';
//now its a variable name
if (Definitions.find(ExCmd) == Definitions.end()) {
Unknown = true;
}
else {
Value += (Sign * 2 - 1) * Definitions[ExCmd];
}
}
} while (ExCmd != "=");
if (!SkipCommand) {
std::cout << "= ";
if (Unknown || InverseDefinitions.find(Value) == InverseDefinitions.end()) {
std::cout << "unknown\n";
}
else {
std::cout << InverseDefinitions[Value] << '\n';
}
}
}
}
}