-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathASKHSH3.cpp
More file actions
504 lines (353 loc) · 15 KB
/
Copy pathASKHSH3.cpp
File metadata and controls
504 lines (353 loc) · 15 KB
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
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
#include <iostream>
using namespace std;
#include <vector>
int countparan(string s) //metritis parenthesewn pu anigun
{
int count=0;
for (int i = 0; i != s.size(); i++)
if (s[i] == '(')
count++;
return count;
}
int countparklin(string s ) //metritis parenthesewn pu klinun
{
int count=0;
for (int i = 0; i != s.size(); i++)
if (s[i] == ')')
count++;
return count;
}
int countaster(string s ) //metritis *
{
int count=0;
for (int i = 0; i != s.size(); i++)
if (s[i] == '*')
count++;
return count;
}
int countminus(string s )//metritis -
{
int count=0;
for (int i = 0; i != s.size(); i++)
if (s[i] == '-')
count++;
return count;
}
int countplus(string s )//metritis +
{
int count=0;
for (int i = 0; i != s.size(); i++)
if (s[i] == '+')
count++;
return count;
}
int counta(string s )//metritis a
{
int count=0;
for (int i = 0; i != s.size(); i++)
if (s[i] == 'a')
count++;
return count;
}
int countb(string s )//metritis b
{
int count=0;
for (int i = 0; i != s.size(); i++)
if (s[i] == 'b')
count++;
return count;
}
void automata(vector <int> b,string s) //vasiki synartisi programmatos
{
vector < int > soros;
for( int i=0; i!=s.size();)
{
if(i==0 && soros.size()==0)//ekxorisi sto stack ta arxika symvola
{
soros.push_back(0);
soros.push_back(1);
}
if(soros[soros.size()-1]==5||soros[soros.size()-1]==6||soros[soros.size()-1]==7||soros[soros.size()-1]==8||soros[soros.size()-1]==9||soros[soros.size()-1]==13||soros[soros.size()-1]==14)//elegxos gia termatiko sto stack
{
cout<<" final symbol in the stack \n";
if(b.at(i)==soros[soros.size()-1]) // an to stack exei idio termatiko simvolo me to stack pu adistixi sta symvola tis symvoloseiras
{
// tote ginontai oi aparetitoi elegxoi me vasi thn diadikasia pop back sto stack
cout<<" stack symbol and string symbol are equal\n";
if(soros[soros.size()-1]==5 )
{
cout<<"current string symbol is (, which is equall to the last symbol in the stack which is also ( \n";
cout<<"action to be taken is : removing last stack symbol and moving to the next string symobol \n";
soros.pop_back();
i++;
}
if(soros[soros.size()-1]==6)
{
cout<<"current string symbol is ), which is equall to the last symbol in the stack which is also ) \n";
cout<<"action to be taken is : removing last stack symbol and moving to the next string symobol \n";
soros.pop_back();
i++;
}
if(soros[soros.size()-1]==7)
{
cout<<"current string symbol is *, which is equall to the last symbol in the stack which is also * \n";
cout<<"action to be taken is : removing last stack symbol and moving to the next string symobol \n";
soros.pop_back();
i++;
}
if(soros[soros.size()-1]==8)
{
cout<<"current string symbol is -, which is equall to the last symbol in the stack which is also - \n";
cout<<"action to be taken is : removing last stack symbol and moving to the next string symobol \n";
soros.pop_back();
i++;
}
if(soros[soros.size()-1]==9)
{
cout<<"current string symbol is + , which is equall to the last symbol in the stack which is also + \n";
cout<<"action to be taken is : removing last stack symbol and moving to the next string symobol \n";
soros.pop_back();
i++;
}
if(soros[soros.size()-1]==13)
{
cout<<"current string symbol is a, which is equall to the last symbol in the stack which is also a \n";
cout<<"action to be taken is : removing last stack symbol and moving to the next string symobol \n";
soros.pop_back();
i++;
}
if(soros[soros.size()-1]==14)
{
cout<<"current string symbol is b, which is equall to the last symbol in the stack which is also b \n";
cout<<"action to be taken is : removing last stack symbol and moving to the next string symobol \n";
soros.pop_back();
i++;
}
}
continue;
}
if(soros[soros.size()-1]==0 && b.at(i)==0) // elegxos telus
{
cout<<"the string has been analyzed and it looks like the stack ended with the $ symbol , and also the inputed string ended with the $ symbol meaning that the inputed string is recognised by this grammar \n";
break;
}
if(soros[soros.size()-1]==1||soros[soros.size()-1]==2||soros[soros.size()-1]==3||soros[soros.size()-1]==4) //elegxos gia mh teliko symvolo sto stack kai analoga me to stack termatikon symvolon(=string) pernw thn analogi paragogh
// kai kano pop to telefteo symnvolo stack kai adikatastasi me thn paragogh tou alla anapoda
{
cout<<" stack contains a non terminal symbol \n";
if(soros[soros.size()-1]==1 && b.at(i)==5)
{
soros.pop_back();
soros.push_back(6);
soros.push_back(2);
soros.push_back(5);
cout<<"stack symbol was S , string symbol was (, adding in the stack in this order the symbols ) , X, ( \n";
cout<<"production made is S->(X) \n";
continue;
}
if(soros[soros.size()-1]==2 && b.at(i)==5)
{
soros.pop_back();
soros.push_back(4);
soros.push_back(3);
cout<<"stack symbol was X string symbol was (, adding in the stack in this order the symbols Z,Y \n";
cout<<"production made is X->YZ \n ";
continue;
}
if(soros[soros.size()-1]==2 && b.at(i)==13)
{
soros.pop_back();
soros.push_back(4);
soros.push_back(3);
cout<<"stack symbol was X string symbol was a, adding in the stack in this order the symbols Z,Y \n";
cout<<"production made is X->YZ \n ";
continue;
}
if(soros[soros.size()-1]==2&&b.at(i)==14 )
{
soros.pop_back();
soros.push_back(4);
soros.push_back(3);
cout<<"stack symbol was X string symbol was b, adding in the stack in this order the symbols Z,Y \n";
cout<<"production made is X->YZ \n ";
continue;
}
if(soros[soros.size()-1]==3 && b.at(i)==5)
{
soros.pop_back();
soros.push_back(1);
cout<<"stack symbol was Y string symbol was (, adding in the stack in this order the symbol S \n";
cout<<"production made was Y->S \n";
continue;
}
if(soros[soros.size()-1]==3 && b.at(i)==13)
{
soros.pop_back();
soros.push_back(13);
cout<<"stack symbol was Y string symbol was a, adding in the stack in this order the symbol a\n";
cout<<"production made was Y->a \n ";
continue;
}
if(soros[soros.size()-1]==3 && b.at(i)==14)
{
soros.pop_back();
soros.push_back(14);
cout<<"stack symbol was Y string symbol was b, adding in the stack in this order the symbols b \n";
cout<<"production made was Y->b \n ";
continue;
}
if(soros[soros.size()-1]==4 && b.at(i)==6)
{
soros.pop_back();
cout<<"stack symbol was Z, string symbol was ) \n";
cout<<"production made was Z -> e (empty) so no symbols are to be added to the stack, Z symbols is removed \n";
continue;
}
if(soros[soros.size()-1]==4 && b.at(i)==7)
{
soros.pop_back();
soros.push_back(2);
soros.push_back(7);
cout<<"stack symbol was Z , string symbol was * , adding in the stack in this order X , * \n ";
cout<<"production made was Z -> *X \n";
continue;
}
if(soros[soros.size()-1]==4 && b.at(i)==8)
{
soros.pop_back();
soros.push_back(2);
soros.push_back(8);
cout<<"stack symbol was Z , string symbol was - , adding in the stack in this order X , - \n ";
cout<<"production made was Z -> -X \n";
continue;
}
if(soros[soros.size()-1]==4 && b.at(i)==9)
{
soros.pop_back();
soros.push_back(2);
soros.push_back(9);
cout<<"stack symbol was Z , string symbol was + , adding in the stack in this order X , + \n ";
cout<<"production made was Z -> +X \n";
continue;
}
else//elegxos gia simvoloseira mh an agnorisimi
{
cout<<"it seems that the string you have inputed was not recognised by the analyzer because there was an M(x,a) that was not present in the syntax table \n";
cout<<"thank you for using our analyzer \n";
break;
}
}
}
}
int main()
{
int parenthanigi ;
int parenthklini;
int asteriskos;
int minus;
int plus;
int a;
int bb;
string mystring12;
mystring12="((b-a)*(a+b))$"; //paradigma simvoloseiras
string mystring123="((b-a)*(a+b))";
cout << "this is the example string " << mystring123<<"\n";
vector < int > symbo12;// metatropi symvoloseiras se kodikopoihmeno vector (stack ) termatikon symvolon
for(int i=0; i!=mystring12.size(); (i++))//metatrepo ta simvola ths simvoloseiras se arithmus pou vazw sto vector symbo12 oste na xrhsimopoihthoun meta sthn synarthsh symbo
{
if(mystring12.at(i)=='(')// ( =5
{
symbo12.push_back(5);
}
if(mystring12.at(i)==')')// ) =6
{
symbo12.push_back(6);
}
if(mystring12.at(i)=='*') // * = 7
{
symbo12.push_back(7);
}
if(mystring12.at(i)=='-')// - = 8
{
symbo12.push_back(8);
}
if(mystring12.at(i)=='+')// + = 9
{
symbo12.push_back(9);
}
if(mystring12.at(i)=='a') // a = 13
{
symbo12.push_back(13);
}
if(mystring12.at(i)=='b')// b= 14
{
symbo12.push_back(14);
}
if(mystring12.at(i)=='$') //$ = 0
{
symbo12.push_back(0);
}
}
cout<< " initiating string analysis\n";
automata(symbo12,mystring12);
cout<<"this was the example string being analyzed we will continue by asking you to input your own string \n ";
string mystring1;
string mystring;
cout << "Enter the string you wish to analyze \n";
cin >> mystring ;
mystring1=mystring + "$";
cout << "this is your string " << mystring <<"\n";
parenthanigi = countparan(mystring1); // metraw thn posothta kathe symvolou stin simvoloseira kai elegxo sthn main
parenthklini = countparklin(mystring1);
asteriskos = countaster(mystring1);
minus = countminus(mystring1);
plus = countplus(mystring1);
a = counta(mystring1);
bb = countb(mystring1);
vector < int > symbo;
for(int i=0; i!=mystring1.size(); (i++))//vazo
{
if(mystring1.at(i)=='(')
{
symbo.push_back(5);
}
if(mystring1.at(i)==')')
{
symbo.push_back(6);
}
if(mystring1.at(i)=='*')
{
symbo.push_back(7);
}
if(mystring1.at(i)=='-')
{
symbo.push_back(8);
}
if(mystring1.at(i)=='+')
{
symbo.push_back(9);
}
if(mystring1.at(i)=='a')
{
symbo.push_back(13);
}
if(mystring1.at(i)=='b')
{
symbo.push_back(14);
}
if(mystring1.at(i)=='$')
{
symbo.push_back(0);
}
}
if(parenthanigi+parenthklini+asteriskos+minus+plus+a+bb==mystring.size())//elegxos an h symvoloseira apoteleite mono apo (,),a,b,+,-,*
{
cout<< "inputed string has the correct form , initiating string analyzer\n";
automata(symbo,mystring1);
}
else
{
cout<<"you have inputted a string that does not contain only {(,),*,-,+,a,b} , repeat using a correct string \n ";
}
return 0;
}