-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
211 lines (178 loc) · 4.79 KB
/
main.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
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
#include <cstring>
#include <fstream>
#include <iostream>
#include <string>
#include <unordered_map>
#include <vector>
using namespace std;
vector<string> normali;
vector<string> scurrili;
vector<string> verbi;
int map[26];
#define RESET "\033[0m"
#define RED "\033[31m"
#define GREEN "\033[32m"
#define BLUE "\033[34m"
#define YELLOW "\033[33m"
#define BOLD "\033[1m"
#define ITALICS "\033[3m"
#define CLS "\033[2J\033[1;1H"
string frase = "desdromenzitediocan";
//string frase ="";
bool isContained(string s1, int map[]) {
int tmpMap[26];
memcpy(tmpMap, map, 26 * sizeof(int));
for (int i = 0; i < s1.size(); i++) {
if (tmpMap[s1[i] - 'a'] == 0)
return false;
else
tmpMap[s1[i] - 'a']--;
}
return true;
}
void trimWhitespaces() {
int i = 0;
while (i < frase.size() && frase[i] == ' ')
i++;
frase.erase(0, i);
i = frase.size() - 1;
while (i >= 0 && frase[i] == ' ')
i--;
frase.erase(i + 1, string::npos);
}
void eraseLetters(string s) {
for (int i = 0; i < s.size(); i++) {
int j = 0;
while (frase[j] != s[i])
j++;
frase.erase(j, 1);
}
trimWhitespaces();
/*
for (int i = 0; i < frase.size(); i++) {
if (frase[i] == ' ') {
int j = 0;
while (s[i] == ' ') {
j++;
}
if (j != 0)
frase.erase(i, j - 1);
}
}
*/
}
string normalize(string s) {
string tmp = "";
for (int i = 0; i < s.size(); i++) {
if (s[i] != ' ')
tmp.push_back(s[i]);
}
return tmp;
}
/*
void normalizeString(string& s){
for(int i = 0; i<s.size(); i++){
if((s[i]>='a' && s[i]<='z')){
if(s[i]=='è' or s[i] == 'é')
s[i]='e';
}
}
}
*/
void whatIsAvailable() {
std::cout << GREEN << BOLD << "-----------PAROLE NORMALI-----------" << RESET
<< std::endl;
for (int i = 0; i < normali.size(); i++) {
if (isContained(normali[i], map))
std::cout << normali[i] << "\n";
}
std::cout << RED << BOLD << "-----------PAROLE SCURRILI-----------" << RESET
<< std::endl;
for (int i = 0; i < scurrili.size(); i++) {
if (isContained(scurrili[i], map))
std::cout << scurrili[i] << std::endl;
}
std::cout << BLUE << BOLD << "-----------VERBI-----------" << RESET
<< std::endl;
for (int i = 0; i < verbi.size(); i++) {
if (isContained(verbi[i], map))
std::cout << verbi[i] << std::endl;
}
}
int main(int argc, char *argv[]) {
ifstream normaliIn("normali.txt");
ifstream scurriliIn("scurrili.txt");
ifstream verbiIn("verbi.txt");
memset(map, 0, 26 * sizeof(int));
trimWhitespaces();
const string fraseNormalized = normalize(frase);
std::cout << fraseNormalized << std::endl;
for (int i = 0; i < fraseNormalized.size(); i++)
map[fraseNormalized[i] - 'a']++;
string tmp;
while (normaliIn.good()) {
normaliIn >> tmp;
normali.push_back(tmp);
}
while (scurriliIn.good()) {
scurriliIn >> tmp;
scurrili.push_back(tmp);
}
while (verbiIn.good()) {
verbiIn >> tmp;
verbi.push_back(tmp);
}
/*
string userIn = "";
std::cout << CLS;
while (true) {
std::cout << ITALICS << "La tua frase:\n\n" << frase << std::endl;
std::cout << RESET << BOLD << "\n"
<< GREEN << "A - Verifica parole contenute \n"
<< BLUE << "B - Verifica se è contenuta parola\n"
<< YELLOW << "C - Sottrai\n"
<< RED << "Q - Quit\n"
<< RESET << std::endl;
cin >> userIn;
cout << CLS;
if (userIn.compare("Q") == 0 or userIn.compare("q") == 0)
break;
else if (userIn.compare("A") == 0 or userIn.compare("a") == 0)
whatIsAvailable();
else if (userIn.compare("B") == 0 or userIn.compare("b") == 0) {
std::cout << ITALICS
<< "Dammi una parola per cui verificare se sia contenuta"
<< RESET << std::endl;
string candidato;
cin >> candidato;
std::cout << CLS;
if (isContained(candidato, map))
std::cout << GREEN << "La parola è contenuta!" << std::endl;
else
std::cout << RED << "La parola NON è contenuta!" << std::endl;
cout << RESET;
}
else if (userIn.compare("C") == 0 or userIn.compare("c") == 0) {
std::cout << ITALICS << "Dammi una parola da sottrarre" << RESET
<< std::endl;
string candidato;
cin >> candidato;
cout << CLS;
if (!isContained(candidato, map))
std::cout << RED << "Mona va che non è contenuta sta parola, dovmi eh"
<< std::endl;
else {
for (int i = 0; i < candidato.size(); i++) {
map[candidato[i] - 'a']--;
}
eraseLetters(candidato);
std::cout << GREEN << "Sottratto con successo" << std::endl;
}
std::cout << RESET;
}
else {
std::cout << "Hai fat-fingerato, sei stra gay" << std::endl;
}
}
*/
}