-
Notifications
You must be signed in to change notification settings - Fork 0
/
Lab3.cpp
378 lines (308 loc) · 7.07 KB
/
Lab3.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
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
#include "stdafx.h"
#include <iostream>
#include <vector>
#include <stack>
#include <string>
class MPAuto {
protected:
std::vector<std::string> letters;
std::vector<std::string> magsymb;
std::stack<char> stack;
std::string line;
std::string output;
short accept = 0;
short end = 0;
virtual int CheckLine(std::string *str);
public:
MPAuto();
~MPAuto() {}
virtual std::string GetOutput() = 0;
virtual void Accept(); // Принять
void Cancel(); // Отвергнуть
void GoFwd(); // Сдвиг
void Wait(); // Удержать
void Pop(); // Вытолкнуть
void Push(char ch); // Втолкнуть()
void Exchange(std::string str); // Заменить()
int GetLine();
void PushLetters(std::vector<std::string> str);
void PushMagSymbols(std::vector<std::string> str);
virtual int Work() = 0;
short GetAccept();
};
MPAuto::MPAuto() {
stack.push('^');
magsymb.push_back("^");
}
void MPAuto::Accept() {
accept = 1;
end = 1;
}
short MPAuto::GetAccept() {
return accept;
}
void MPAuto::Cancel() {
accept = -1;
end = 1;
}
void MPAuto::GoFwd() {
line.erase(0, 1);
}
void MPAuto::Wait() {
return;
}
void MPAuto::Pop() {
stack.pop();
}
void MPAuto::Push(char ch) {
stack.push(ch);
}
void MPAuto::Exchange(std::string str) {
Pop();
for (unsigned i = 0; i < str.length(); ++i)
Push(str[i]);
}
int MPAuto::CheckLine(std::string *str) {
for (unsigned i = 0; i < str->length(); ++i)
if ((*str)[i] != '1' && (*str)[i] != '0')
return 0;
return 1;
}
int MPAuto::GetLine() {
std::string str;
std::getline(std::cin, str);
if (CheckLine(&str)) {
line = str;
return 1;
}
else return 0;
}
void MPAuto::PushLetters(std::vector<std::string> str) {
for (unsigned i = 0; i < str.size(); ++i)
letters.push_back(str[i]);
}
void MPAuto::PushMagSymbols(std::vector<std::string> str) {
for (unsigned i = 0; i < str.size(); ++i)
magsymb.push_back(str[i]);
}
class MPAuto1 : virtual public MPAuto {
private:
public:
MPAuto1();
~MPAuto1() {}
std::string GetOutput() { return ""; }
int Work();
};
MPAuto1::MPAuto1() {
std::vector<std::string> str;
str.push_back("0");
str.push_back("1");
PushLetters(str);
str.clear();
str.push_back("Z");
str.push_back("A");
PushMagSymbols(str);
}
int MPAuto1::Work() {
char p;
while (!end) {
p = stack.top();
if (!line.length()) {
if (p == magsymb[0][0]) { // ^
Cancel();
}
else if (p == magsymb[1][0]) { // Z
Accept();
}
else if (p == magsymb[2][0]) { // A
Accept();
}
}
else {
if (letters[0][0] == line[0]) { // 0
if (p == magsymb[0][0]) {
Cancel();
}
else if (p == magsymb[1][0]) {
Pop();
GoFwd();
}
else if (p == magsymb[2][0]) {
GoFwd();
}
}
else { // 1
if (p == magsymb[0][0]) {
Push(magsymb[2][0]);
Push(magsymb[1][0]);
GoFwd();
}
else if (p == magsymb[1][0]) {
GoFwd();
}
else if (p == magsymb[2][0]) {
Cancel();
}
}
}
}
return accept;
}
class MPAuto2 : virtual public MPAuto {
private:
void ToPrint(char ch); // Выдать()
int CheckLine(std::string *str);
void Accept();
public:
MPAuto2();
~MPAuto2() {}
std::string GetOutput();
int GetLine();
int Work();
};
MPAuto2::MPAuto2() {
std::vector<std::string> str;
str.push_back("0");
str.push_back("1");
PushLetters(str);
str.clear();
str.push_back("Z");
str.push_back("A");
str.push_back("B");
PushMagSymbols(str);
}
std::string MPAuto2::GetOutput() {
return output;
}
int MPAuto2::CheckLine(std::string *str) {
for (unsigned i = 0; i < str->length(); ++i)
if ((*str)[i] != '1' && (*str)[i] != '0')
return 0;
int n = 0, m = 0, n1 = 0, m1 = 0;
unsigned i = 0;
for (; i < str->length() && (*str)[i] == '1'; ++i, ++n);
if (!n) return 0;
for (; i < str->length() && (*str)[i] == '0'; ++i, ++m);
if (!m) return 0;
for (; i < str->length() && (*str)[i] == '1'; ++i, ++n1);
if (n != n1) return 0;
for (; i < str->length() && (*str)[i] == '0'; ++i, ++m1);
if (m != m1 || i != str->length()) return 0;
return 1;
}
int MPAuto2::GetLine() {
std::string str;
std::getline(std::cin, str);
if (CheckLine(&str)) {
line = str;
return 1;
}
else return 0;
}
void MPAuto2::ToPrint(char ch) {
output.push_back(ch);
}
void MPAuto2::Accept() {
accept = 0;
end = 1;
}
int MPAuto2::Work() {
char p;
while (!end) {
p = stack.top();
if (!line.length()) {
if (p == magsymb[0][0]) { // ^
Accept();
}
else if (p == magsymb[1][0]) { // Z
Cancel();
}
else if (p == magsymb[2][0]) { // A
Cancel();
}
else if (p == magsymb[3][0]) { // B
Cancel();
}
}
else {
if (letters[0][0] == line[0]) { // 0
if (p == magsymb[0][0]) {
Cancel();
}
else if (p == magsymb[1][0]) {
Pop();
Wait();
}
else if (p == magsymb[2][0]) {
ToPrint(letters[1][0]);
Exchange("BA");
GoFwd();
}
else if (p == magsymb[3][0]) { // B
ToPrint(letters[0][0]);
Pop();
GoFwd();
}
}
else { // 1
if (p == magsymb[0][0]) {
Push(magsymb[2][0]);
Push(magsymb[1][0]);
GoFwd();
}
else if (p == magsymb[1][0]) {
GoFwd();
}
else if (p == magsymb[2][0]) {
Pop();
Wait();
}
else if (p == magsymb[3][0]) { // B
ToPrint(letters[0][0]);
GoFwd();
}
}
}
}
return accept;
}
int main()
{
int again = 1;
MPAuto* Auto;
do {
char mode = 0;
std::cout << "What task do you want to check? (1/2)" << std::endl;
std::cin >> mode;
std::cin.clear();
std::cin.ignore(std::numeric_limits<std::streamsize>::max(), '\n');
if (mode == '2') {
std::cout << "Ok, task #2." << std::endl;
Auto = new MPAuto2();
}
else {
if (mode != '1')
std::cout << "You gave me incorrect symbol! So ok, it will be task #1." << std::endl;
else
std::cout << "Ok, task #1." << std::endl;
Auto = new MPAuto1();
}
std::cout << "Give me the expression. Use only 0 and 1." << std::endl;
while (!Auto->GetLine())
std::cout << "Incorrect line for this task!\nGive me the expression. Use only 0 and 1." << std::endl;
int result = Auto->Work();
if (!result)
std::cout << "That's the result: " << Auto->GetOutput() << "." << std::endl;
else if (result == 1)
std::cout << "Your line perfectly fit the 1st FSM!" << std::endl;
else if (result == -1)
std::cout << "Your line doesn't fit the 1st FSM." << std::endl;
std::cout << "Again? (1/0)" << std::endl;
std::cin >> again;
std::cin.clear();
std::cin.ignore(std::numeric_limits<std::streamsize>::max(), '\n');
} while (again);
std::cout << "Okay, Good Bye!" << std::endl;
system("Pause");
return 0;
}