forked from sid24rane/LL1-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
first_follow.py
195 lines (149 loc) · 3.64 KB
/
first_follow.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
import re
import string
import pandas as pd
def parse(user_input,start_symbol,parsingTable):
#flag
flag = 0
#appending dollar to end of input
user_input = user_input + "$"
stack = []
stack.append("$")
stack.append(start_symbol)
input_len = len(user_input)
index = 0
while len(stack) > 0:
#element at top of stack
top = stack[len(stack)-1]
print "Top =>",top
#current input
current_input = user_input[index]
print "Current_Input => ",current_input
if top == current_input:
stack.pop()
index = index + 1
else:
#finding value for key in table
key = top , current_input
print key
#top of stack terminal => not accepted
if key not in parsingTable:
flag = 1
break
value = parsingTable[key]
if value !='@':
value = value[::-1]
value = list(value)
#poping top of stack
stack.pop()
#push value chars to stack
for element in value:
stack.append(element)
else:
stack.pop()
if flag == 0:
print "String accepted!"
else:
print "String not accepted!"
def ll1(follow, productions):
print "\nParsing Table\n"
table = {}
for key in productions:
for value in productions[key]:
if value!='@':
for element in first(value, productions):
table[key, element] = value
else:
for element in follow[key]:
table[key, element] = value
for key,val in table.items():
print key,"=>",val
new_table = {}
for pair in table:
new_table[pair[1]] = {}
for pair in table:
new_table[pair[1]][pair[0]] = table[pair]
print "\n"
print "\nParsing Table in matrix form\n"
print pd.DataFrame(new_table).fillna('-')
print "\n"
return table
def follow(s, productions, ans):
if len(s)!=1 :
return {}
for key in productions:
for value in productions[key]:
f = value.find(s)
if f!=-1:
if f==(len(value)-1):
if key!=s:
if key in ans:
temp = ans[key]
else:
ans = follow(key, productions, ans)
temp = ans[key]
ans[s] = ans[s].union(temp)
else:
first_of_next = first(value[f+1:], productions)
if '@' in first_of_next:
if key!=s:
if key in ans:
temp = ans[key]
else:
ans = follow(key, productions, ans)
temp = ans[key]
ans[s] = ans[s].union(temp)
ans[s] = ans[s].union(first_of_next) - {'@'}
else:
ans[s] = ans[s].union(first_of_next)
return ans
def first(s, productions):
c = s[0]
ans = set()
if c.isupper():
for st in productions[c]:
if st == '@' :
if len(s)!=1 :
ans = ans.union( first(s[1:], productions) )
else :
ans = ans.union('@')
else :
f = first(st, productions)
ans = ans.union(x for x in f)
else:
ans = ans.union(c)
return ans
if __name__=="__main__":
productions=dict()
grammar = open("grammar2", "r")
first_dict = dict()
follow_dict = dict()
flag = 1
start = ""
for line in grammar:
l = re.split("( |->|\n|\||)*", line)
lhs = l[0]
rhs = set(l[1:-1])-{''}
if flag :
flag = 0
start = lhs
productions[lhs] = rhs
print '\nFirst\n'
for lhs in productions:
first_dict[lhs] = first(lhs, productions)
for f in first_dict:
print str(f) + " : " + str(first_dict[f])
print ""
print '\nFollow\n'
for lhs in productions:
follow_dict[lhs] = set()
follow_dict[start] = follow_dict[start].union('$')
for lhs in productions:
follow_dict = follow(lhs, productions, follow_dict)
for lhs in productions:
follow_dict = follow(lhs, productions, follow_dict)
for f in follow_dict:
print str(f) + " : " + str(follow_dict[f])
ll1Table = ll1(follow_dict, productions)
#parse("a*(a+a)",start,ll1Table)
parse("ba=a+23",start,ll1Table)
# tp(ll1Table)