forked from khuqen/gramma_analysis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SLR1.cpp
642 lines (618 loc) · 20.5 KB
/
SLR1.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
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
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
#include <cstdio>
#include <vector>
#include <string>
#include <iostream>
#include <map>
#include <set>
#include <stack>
#include <queue>
using namespace std;
/* 产生式结构体,左部符号和右部符号串 */
struct Production {
char left;
vector<char> rigths;
/* 重载== */
bool operator==(Production& rhs) const {
if (left != rhs.left)
return false;
for (int i = 0; i < rigths.size(); i++) {
if (i >= rhs.rigths.size())
return false;
if (rigths[i] != rhs.rigths[i])
return false;
}
return true;
}
};
/* LR0项目 */
struct LR0Item {
Production p;
/* 点的位置 */
int location;
};
/* LR0项目集 */
struct LR0Items {
vector<LR0Item> items;
};
/* LR0项目集规范族 */
struct CanonicalCollection {
/* 项目集集合 */
vector<LR0Items> items;
/* 保存DFA的图,first为转移到的状态序号,second是经什么转移 */
vector< pair<int, char> > g[100];
}CC;
/* 文法结构体 */
struct Grammar {
int num; // 产生式数量
vector<char> T; // 终结符
vector<char> N; // 非终结符
vector<Production> prods; //产生式
}grammar;
/* FIRST集和FOLLOW集 */
map<char, set<char> > first;
map<char, set<char> > follow;
/* DFA队列, 用于存储待转移的有效项目集 */
queue< pair<LR0Items, int> > Q;
/* action表和goto表 */
pair<int, int> action[100][100]; // first表示分析动作,0->ACC 1->S 2->R second表示转移状态或者产生式序号
int goton[100][100];
/* 待分析串 */
string str;
/* 分析栈 */
stack< pair<int, char> > ST; // first是state,second 是symble
/* 判断ch是否是终结符 */
int isInT(char ch)
{
for (int i = 0; i < grammar.T.size(); i++) {
if (grammar.T[i] == ch) {
return i + 1;
}
}
return 0;
}
/* 判断ch是否是非终结符 */
int isInN(char ch)
{
for (int i = 0; i < grammar.N.size(); i++) {
if (grammar.N[i] == ch) {
return i + 1;
}
}
return 0;
}
/* 求(T U N)的FIRST集 */
void getFirstSet()
{
/* 终结符的FIRST集是其本身 */
for (int i = 0; i < grammar.T.size(); i++) {
char X = grammar.T[i];
set<char> tmp;
tmp.insert(X);
first[X] = tmp;
}
/* 当非终结符的FIRST集发生变化时循环 */
bool change = true;
while (change) {
change = false;
/* 枚举每个产生式 */
for (int i = 0; i < grammar.prods.size(); i++) {
Production &P = grammar.prods[i];
char X = P.left;
set<char> &FX = first[X];
/* 如果右部第一个符号是空或者是终结符,则加入到左部的FIRST集中 */
if (isInT(P.rigths[0]) || P.rigths[0] == '&') {
/* 查找是否FIRST集是否已经存在该符号 */
auto it = FX.find(P.rigths[0]);
/* 不存在 */
if (it == FX.end()) {
change = true; // 标注FIRST集发生变化,循环继续
FX.insert(P.rigths[0]);
}
} else {
/* 当前符号是非终结符,且当前符号可以推出空,则还需判断下一个符号 */
bool next = true;
/* 待判断符号的下标 */
int idx = 0;
while (next && idx < P.rigths.size()) {
next = false;
char Y = P.rigths[idx];
set<char> &FY = first[Y];
for (auto it = FY.begin(); it != FY.end(); it++) {
/* 把当前符号的FIRST集中非空元素加入到左部符号的FIRST集中 */
if (*it != '&') {
auto itt = FX.find(*it);
if (itt == FX.end()) {
change = true;
FX.insert(*it);
}
}
}
/* 当前符号的FIRST集中有空, 标记next为真,idx下标+1 */
auto it = FY.find('&');
if (it != FY.end()) {
next = true;
idx = idx + 1;
}
}
}
}
}
printf("FIRST:\n");
for (int i = 0; i < grammar.N.size(); i++) {
char X = grammar.N[i];
printf("%c: ", X);
for (auto it = first[X].begin(); it != first[X].end(); it++) {
printf("%c ", *it);
}
printf("\n");
}
}
/* 产找alpha串的FIRST集, 保存到FS集合中 */
void getFirstByAlphaSet(vector<char> &alpha, set<char> &FS)
{
/* 当前符号是非终结符,且当前符号可以推出空,则还需判断下一个符号 */
bool next = true;
int idx = 0;
while (idx < alpha.size() && next) {
next = false;
/* 当前符号是终结符或空,加入到FIRST集中 */
if (isInT(alpha[idx]) || alpha[idx] == '&') {
/* 判断是否已经在FIRST集中 */
auto itt = FS.find(alpha[idx]);
if (itt == FS.end()) {
FS.insert(alpha[idx]);
}
} else {
char B = alpha[idx];
set<char> &FB = first[B];
for (auto it = first[B].begin(); it != first[B].end(); it++) {
/* 当前符号FIRST集包含空,标记next为真,并跳过当前循环 */
if (*it == '&') {
next = true;
continue;
}
/* 把非空元素加入到FIRST集中 */
auto itt = FS.find(*it);
if (itt == FS.end()) {
FS.insert(*it);
}
}
}
idx = idx + 1;
}
/* 如果到达产生式右部末尾next还为真,说明alpha可以推空,将空加入到FIRST集中 */
if (next) {
FS.insert('&');
}
}
/* 求非终结符的FOLLOW集 */
void getFollowSet()
{
/* 初始化终结符的FOLLOW集为空集 */
for (int i = 0; i < grammar.N.size(); i++) {
char B = grammar.N[i];
follow[B] = set<char>();
}
/* 将$加入到文法的开始符号的FOLLOW集中 */
char S = grammar.N[0];
follow[S].insert('$');
bool change = true;
while (change) {
change = false;
/* 枚举每个产生式 */
for (int i = 0; i < grammar.prods.size(); i++) {
Production &P = grammar.prods[i];
for (int j = 0; j < P.rigths.size(); j++) {
char B = P.rigths[j];
/* 当前符号是非终结符 */
if (isInN(B)) {
set<char> &FB = follow[B];
set<char> FS;
/* alpha是从当前符号下一个符号开始的符号串 */
vector<char> alpha(P.rigths.begin() + j + 1, P.rigths.end());
/* 求alpha的FIRST集,即FS */
getFirstByAlphaSet(alpha, FS);
// printf("%c:\n", B);
/* 将alpha的FIRST集中所有非空元素加入到当前符号的FOLLOW集中 */
for (auto it = FS.begin(); it != FS.end(); it++) {
// printf("%c ", *it);
if (*it == '&') {
continue;
}
auto itt = FB.find(*it);
if (itt == FB.end()) {
change = true;
FB.insert(*it);
}
}
// printf("\n");
/* 如果alpha能推空,或者当前符号是产生式右部末尾,则将文法左部符号的FOLLOW集加入到当前符号的FOLLOW集中 */
auto itt = FS.find('&');
if (itt != FS.end() || (j + 1) >= P.rigths.size()) {
char A = P.left;
for (auto it = follow[A].begin(); it != follow[A].end(); it++) {
auto itt = FB.find(*it);
if (itt == FB.end()) {
change = true;
FB.insert(*it);
}
}
}
}
}
}
}
printf("FOLLOW:\n");
for (int i = 0; i < grammar.N.size(); i++) {
char X = grammar.N[i];
printf("%c: ", X);
for (auto it = follow[X].begin(); it != follow[X].end(); it++) {
printf("%c ", *it);
}
printf("\n");
}
}
/* 判断是LR0项目t否在有效项目集I中 */
bool isInLR0Items(LR0Items &I, LR0Item &t)
{
for (auto it = I.items.begin(); it != I.items.end(); it++) {
LR0Item &item = *it;
if (item.p == t.p && item.location == t.location)
return true;
}
return false;
}
/* 打印某个项目集 */
void printLR0Items(LR0Items &I)
{
for (auto it = I.items.begin(); it != I.items.end(); it++) {
LR0Item &L = *it;
printf("%c->", L.p.left);
for (int i = 0; i < L.p.rigths.size(); i++) {
if (L.location == i)
printf(".");
printf("%c", L.p.rigths[i]);
}
if (L.location == L.p.rigths.size())
printf(".");
printf(" ");
}
printf("\n");
}
/* 求I的闭包 */
void closure(LR0Items &I)
{
bool change = true;
while (change) {
change = false;
LR0Items J;
/* 枚举每个项目 */
J.items.assign(I.items.begin(), I.items.end());
for (auto it = J.items.begin(); it != J.items.end(); it++) {
LR0Item &L = *it;
/* 非规约项目 */
if (L.location < L.p.rigths.size()) {
char B = L.p.rigths[L.location];
if (isInN(B)) {
/* 把符合条件的LR0项目加入闭包中 */
for (int i = 0; i < grammar.prods.size(); i++) {
Production &P = grammar.prods[i];
if (P.left == B) {
LR0Item t;
t.location = 0;
t.p.left = P.left;
t.p.rigths.assign(P.rigths.begin(), P.rigths.end());
if (!isInLR0Items(I, t)) {
/* 标记改变 */
change = true;
I.items.push_back(t);
}
}
}
}
}
}
}
}
/* 判断是否在项目集规范族中,若在返回序号 */
int isInCanonicalCollection(LR0Items &I)
{
for (int i = 0; i < CC.items.size(); i++) {
LR0Items &J = CC.items[i];
bool flag = true;
if (J.items.size() != I.items.size()) {
flag = false;
continue;
}
/* 每个项目都在该项目集中,则认为这个两个项目集相等 */
for (auto it = I.items.begin(); it != I.items.end(); it++) {
LR0Item &t = *it;
if (!isInLR0Items(J, t)) {
flag = false;
break;
}
}
if (flag) {
return i + 1;
}
}
return 0;
}
/* 转移函数,I为当前的项目集,J为转移后的项目集, 经X转移 */
void go(LR0Items &I, char X, LR0Items &J)
{
for (auto it = I.items.begin(); it != I.items.end(); it++) {
LR0Item &L = *it;
/* 非规约项目 */
if (L.location < L.p.rigths.size()) {
char B = L.p.rigths[L.location];
/* 如果点后面是非终结符,且非终结符为X,点位置加1, 加入到转移项目集中*/
if (B == X) {
LR0Item t;
t.location = L.location + 1;
t.p.left = L.p.left;
t.p.rigths.assign(L.p.rigths.begin(), L.p.rigths.end());
J.items.push_back(t);
}
}
}
/* 若J中有项目,则求其闭包 */
if (J.items.size() > 0) {
closure(J);
}
}
/* 构建DFA和项目集规范族 */
void DFA()
{
/* 构建初始项目集 */
LR0Item t;
t.location = 0;
t.p.left = grammar.prods[0].left;
t.p.rigths.assign(grammar.prods[0].rigths.begin(), grammar.prods[0].rigths.end());
LR0Items I;
I.items.push_back(t);
closure(I);
/* 加入初始有效项目集 */
CC.items.push_back(I);
/* 把新加入的有效项目集加入待扩展队列中 */
Q.push(pair<LR0Items, int>(I, 0));
while (!Q.empty()) {
LR0Items &S = Q.front().first;
int sidx = Q.front().second;
/* 遍历每个终结符 */
for (int i = 0; i < grammar.T.size(); i++) {
LR0Items D;
go(S, grammar.T[i], D);
int idx;
/* 若不为空 */
if (D.items.size() > 0) {
/* 查找是否已经在有效项目集族里 */
idx = isInCanonicalCollection(D);
if (idx > 0) {
idx = idx - 1;
} else {
idx = CC.items.size();
CC.items.push_back(D);
/* 把新加入的有效项目集加入待扩展队列中 */
Q.push(pair<LR0Items, int>(D, idx));
}
/* 从原状态到转移状态加一条边,边上的值为转移符号 */
CC.g[sidx].push_back(pair<char, int>(grammar.T[i], idx));
}
}
/* 遍历每个非终结符 */
for (int i = 0; i < grammar.N.size(); i++) {
LR0Items D;
go(S, grammar.N[i], D);
int idx;
if (D.items.size() > 0) {
/* 查找是否已经在有效项目集族里 */
idx = isInCanonicalCollection(D);
if (idx != 0) {
idx = idx - 1;
} else {
idx = CC.items.size();
CC.items.push_back(D);
/* 把新加入的有效项目集加入待扩展队列中 */
Q.push(pair<LR0Items, int>(D, idx));
}
/* 从原状态到转移状态加一条边,边上的值为转移符号 */
CC.g[sidx].push_back(pair<char, int>(grammar.N[i], idx));
}
}
/* 当前状态扩展完毕,移除队列*/
Q.pop();
}
printf("CC size: %d\n", CC.items.size());
for (int i = 0; i < CC.items.size(); i++) {
printf("LR0Items %d:\n", i);
printLR0Items(CC.items[i]);
for (int j = 0; j < CC.g[i].size(); j++) {
pair<char, int> p= CC.g[i][j];
printf("to %d using %c\n", p.second, p.first);
}
}
}
/* 生成SLR1分析表 */
void productSLR1AnalysisTabel()
{
for (int i = 0; i < CC.items.size(); i++) {
LR0Items &LIt= CC.items[i];
/* 构建action表 */
for (auto it = LIt.items.begin(); it != LIt.items.end(); it++) {
LR0Item &L = *it;
/* 非规约项目 */
if (L.location < L.p.rigths.size()) {
char a = L.p.rigths[L.location];
int j = isInT(a);
/* a是终结符 */
if (j > 0) {
j = j - 1;
/* 找到对应a的出边,得到其转移到的状态 */
for (int k = 0; k < CC.g[i].size(); k++) {
pair<char, int> p = CC.g[i][k];
if (p.first == a) {
action[i][j].first = 1; // 1->S
action[i][j].second = p.second; //转移状态
break;
}
}
}
} else { // 规约项目
/* 接受项目 */
if (L.p.left == grammar.prods[0].left) {
action[i][grammar.T.size() - 1].first = 3;
} else {
char A = L.p.left;
for (auto a = follow[A].begin(); a != follow[A].end(); a++) {
int j = isInT(*a);
/* 终结符 */
if (j > 0) {
j = j - 1;
/* 找到产生式对应的序号 */
for (int k = 0; k < grammar.prods.size(); k++) {
if (L.p == grammar.prods[k]) {
action[i][j].first = 2;
action[i][j].second = k;
break;
}
}
}
}
}
}
}
/* 构建goto表 */
for (int k = 0; k < CC.g[i].size(); k++) {
pair<char, int> p = CC.g[i][k];
char A = p.first;
int j = isInN(A);
/* 终结符 */
if (j > 0) {
j = j - 1;
goton[i][j] = p.second; //转移状态
}
}
}
/* 打印SLR1分析表 */
for (int i = 0; i < grammar.T.size() / 2; i++)
printf("\t");
printf("action");
for (int i = 0; i < grammar.N.size() / 2 + grammar.T.size() / 2 + 1; i++)
printf("\t");
printf("goto\n");
printf("\t");
for (int i = 0; i < grammar.T.size(); i++) {
printf("%c\t", grammar.T[i]);
}
printf("|\t");
for (int i = 1; i < grammar.N.size(); i++) {
printf("%c\t", grammar.N[i]);
}
printf("\n");
for (int i = 0; i < CC.items.size(); i++) {
printf("%d\t", i);
for (int j = 0; j < grammar.T.size(); j++) {
if (action[i][j].first == 1) {
printf("%c%d\t", 'S', action[i][j].second);
} else if (action[i][j].first == 2) {
printf("%c%d\t", 'R', action[i][j].second);
} else if (action[i][j].first == 3) {
printf("ACC\t");
} else {
printf("\t");
}
}
printf("|\t");
for (int j = 1; j < grammar.N.size(); j++) {
if (goton[i][j]) {
printf("%d\t", goton[i][j]);
} else {
printf("\t");
}
}
printf("\n");
}
}
void initGrammar()
{
printf("Please enter the num of production:\n");
cin >> grammar.num;
string s;
printf("Please enter the production:\n");
for (int i = 0; i < grammar.num; i++) {
cin >> s;
Production tmp;
tmp.left = s[0];
for (int j = 3; j < s.size(); j++) {
tmp.rigths.push_back(s[j]);
}
grammar.prods.push_back(tmp);
}
printf("Please enter the non-terminators(end with #):\n");
char ch;
cin >> ch;
while (ch != '#') {
grammar.N.push_back(ch);
cin >> ch;
}
printf("Please enter the terminators(end with #):\n");
cin >> ch;
while (ch != '#') {
grammar.T.push_back(ch);
cin >> ch;
}
/* 把$当作终结符 */
grammar.T.push_back('$');
/* 求FIRST集和FOLLOW集 */
getFirstSet();
getFollowSet();
/* 构建DFA和SLR1预测分析表 */
DFA();
productSLR1AnalysisTabel();
/* 读入待分析串并初始化分析栈 */
printf("Please enter the String to be analyzed:\n");
cin >> str;
str += '$';
ST.push(pair<int, char>(0, '-'));
}
/* 分析程序 */
void process()
{
int ip = 0;
printf("The ans:\n");
do {
int s = ST.top().first;
char a = str[ip];
int j = isInT(a) - 1;
/* 移进 */
if (action[s][j].first == 1) {
ST.push(pair<int, char>(action[s][j].second, a));
ip = ip + 1;
} else if (action[s][j].first == 2) { // 规约
Production &P = grammar.prods[action[s][j].second];
/* 弹出并输出产生式 */
printf("%c->", P.left);
for (int i = 0; i < P.rigths.size(); i++) {
ST.pop();
printf("%c", P.rigths[i]);
}
printf("\n");
s = ST.top().first;
char A = P.left;
j = isInN(A) - 1;
ST.push(pair<int, char>(goton[s][j], A));
} else if (action[s][j].first == 3) { //接受
printf("ACC\n");
return;
} else {
printf("error\n");
}
} while(1);
}
int main()
{
initGrammar();
process();
return 0;
}