-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparser.py
348 lines (290 loc) · 8.24 KB
/
parser.py
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
# -*- coding: utf-8 -*-
import fileinput
# 初始化工作
ter_set = set()
non_ter_set = set()
pro_set = []
first_set = {}
follow_set = {}
select_set = {}
fir_num = {}
fol_num = {}
non_rec=set()
flag=False
def init():
# for line in fileinput.input('grammar2.txt'):
# a = line.split()
# pro_set.append(a)
# for p in pro_set:
# non_ter_set.add(p[0])
# for p in pro_set:
# for t in p[2:]:
# if t not in non_ter_set:
# ter_set.add(t)
for f in non_ter_set:
first_set[f] = set()
follow_set[f] = set()
for p in pro_set:
i = pro_set.index(p)
select_set[i] = set()
S = 'E'
non_ter_set = {'E', 'E\'', 'T', 'T\'', 'F'}
ter_set = {'id', '+', '*', '(', ')'}
pro_set.append(['E', '->', 'T', 'E\''])
pro_set.append(['E\'', '->', '+', 'T', 'E\''])
pro_set.append(['E\'', '->', 'empty'])
pro_set.append(['T', '->', 'F', 'T\''])
pro_set.append(['T\'', '->', '*', 'F', 'T\''])
pro_set.append(['T\'', '->', 'empty'])
pro_set.append(['F', '->', '(', 'E', ')'])
pro_set.append(['F', '->', 'id'])
# 实现栈
class Stack(object):
def __init__(self):
self.item = []
def print(self):
for x in reversed(self.item):
print(x)
def top(self):
return self.item[-1]
def push(self, x):
self.item.append(x)
def pop(self):
self.item.pop(-1)
# 求first集
def has_empty(t):
for p in pro_set:
if p[0] == t and p[2] == 'empty':
return True
return False
def only_one(t):
count = 0
for p in pro_set:
if p[0] == t:
count += 1
if count > 1:
return False
return True
def loop():
for p in pro_set:
left = p[0]
right = p[2:]
for r in right:
if r in ter_set:
first_set[left].add(r)
break
elif r in non_ter_set:
first_set[left] = first_set[left] | first_set[r]
if has_empty(r):
if r == right[-1]:
first_set[left].add('empty')
else:
continue
else:
break
elif r == 'empty':
first_set[left].add('empty')
else:
print('first_set error')
break
def fir_change():
for f in first_set:
if fir_num[f] != len(first_set[f]):
return True
return False
def get_first():
while True:
for f in first_set:
fir_num[f] = len(first_set[f])
loop()
if fir_change():
continue
# print(first_set)
return
# 求follow集
def loop_fo():
for x in non_ter_set:
if x == S:
follow_set[x].add('$')
for p in pro_set:
left = p[0]
right = p[2:]
if x in right:
i = right.index(x)
if x == right[-1]:
follow_set[x].add('$')
follow_set[x] = follow_set[x] | (
follow_set[left]-{'empty'})
else:
for n in right[i+1:]:
if n in ter_set:
follow_set[x].add(n)
break
elif n in non_ter_set:
follow_set[x] = follow_set[x] | (
first_set[n]-{'empty'})
if has_empty(n):
if n == right[-1]:
follow_set[x] = follow_set[x] | (
follow_set[left]-{'empty'})
else:
continue
else:
break
def fol_change():
for f in follow_set:
if fol_num[f] != len(follow_set[f]):
return True
return False
def get_follow():
while True:
for f in follow_set:
fol_num[f] = len(follow_set[f])
loop_fo()
if fol_change():
continue
# print(follow_set)
return
# 求select集
def get_str_fir(str):
temp = set()
for x in str:
if x in ter_set:
temp.add(x)
return temp
elif x in non_ter_set:
if 'empty' in first_set[x]:
temp = temp | (first_set[x]-{'empty'})
if x == str[-1]:
temp.add('empty')
return temp
else:
temp = temp | first_set[x]
return temp
else:
print('求串first集时错误:既不是终结符也不是非终结符')
def get_select():
for p in pro_set:
i = pro_set.index(p)
left = p[0]
right = p[2:]
if right[0] == 'empty':
select_set[i] = follow_set[left]
else:
fir = get_str_fir(right)
if 'empty' in fir:
select_set[i] = select_set[i] | fir | follow_set[left] - \
{'empty'}
else:
select_set[i] = select_set[i] | fir
# print(select_set)
# 检查回溯与左递归
def down(x,used_l,used_p):
global non_rec
global flag
used_l.add(x)
print(id(used_l))
print(x)
for p in pro_set:
if p[0] == x:
print(p)
if p[2] in ter_set:
continue
if p[2] in non_ter_set:
if p[2] in used_l:
used_p.append(p)
print(p[2])
print(used_l)
# print(used_p)
flag=True
return
else:
used_p.append(p)
down(p[2],used_l,used_p)
if flag==False:
non_rec.add(x)
def is_recursion():
global flag
used_l=set()
used_p=[]
for x in non_ter_set:
down(x,used_l,used_p)
if flag==True:
break
return flag
def is_ll_1():
for x in non_ter_set:
x_pro = []
for p in pro_set:
if p[0] == x:
i = pro_set.index(p)
x_pro.append(i)
for i in x_pro:
for j in x_pro:
if i != j:
res = select_set[i] & select_set[j]
if len(res) != 0:
print(select_set[i])
print(select_set[j])
print(pro_set[i])
print(pro_set[j])
return False
return True
# 预测分析法
def pre_analyze(str):
if not is_ll_1() or str is None:
print('预测分析初始化出错')
stack = Stack()
stack.push('$')
stack.push(S)
top = stack.top()
s = str[0]
is_find = False
used_pro = []
while(not(top == '$'and s == '$')):
if top in non_ter_set:
for p in pro_set:
if p[0] == top:
is_find = True
i = pro_set.index(p)
if s in select_set[i]:
used_pro.append(p)
stack.pop()
if p[2] == 'empty':
top = stack.top()
break
for x in reversed(p[2:]):
stack.push(x)
top = stack.top()
break
if is_find == False:
print('找不到可用的产生式')
return
is_find = False
elif top in ter_set:
if top == s:
stack.pop()
str.pop(0)
top = stack.top()
s = str[0]
else:
print('终结符不相等')
return
for p in used_pro:
print(p)
if __name__ == "__main__":
init()
# for p in pro_set:
# print(p)
# print(non_ter_set)
# print(ter_set)
get_first()
# print(first_set)
get_follow()
# print(follow_set)
get_select()
# print(select_set)
res = is_ll_1()
print(res)
str=['id','+','id','*','id','$']
pre_analyze(str)