-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLL1.py
executable file
·216 lines (165 loc) · 3.95 KB
/
LL1.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
#! /usr/bin/python
# -*- coding:utf8 -*-
# 'grammer'
'''
Lisp -> exp | DEF (需要人工干预以消除二义性)
exp -> ( procedure exp_ ) | Value
procedure -> operator | LAMB | ID
operator -> + | - | * | /
LAMB -> ( lambda ( ArguRefList ) exp )
exp_ -> exp exp_ | None
Value -> " ID | ID | NUM
DEF -> ( define DEFOBJ DEFBODY )
DEFOBJ -> ID | ( ID Argulist )
Argulist -> ID Argulist | None
DEFBODY -> exp DEFBODY | DEF DEFBODY | None
ArguRefList -> ID Argulist | None
ArguCallList -> exp ArguCallList | None
'''
import sys
currentTokenIndex = 0
TokenString = []
def Lisp():
global TokenString
global currentTokenIndex
token = TokenString[currentTokenIndex]
nexttoken = TokenString[currentTokenIndex+1]
if nexttoken == 'define':
DEF()
else:
exp()
def match( s ):
global currentTokenIndex
global TokenString
token = TokenString[currentTokenIndex]
matchString = s
if type(s) == type(''):
s = ''.join(s)
if token in s:
currentTokenIndex += 1
print 'match %s' % token
else:
print 'not match %s' % s
sys.exit(0)
def error( s ):
print 'not match %s' % s
sys.exit(0)
def exp():
global currentTokenIndex
global TokenString
token = TokenString[currentTokenIndex]
if token=='(':
match('(')
procedure()
exp_()
match(')')
elif token in ['"','ID','NUM']:
Value()
else:
error("exp()")
def Value():
global currentTokenIndex
global TokenString
token = TokenString[currentTokenIndex]
if token == '"':
match('"')
elif token == 'ID':
match('ID')
elif token == 'NUM':
match('NUM')
else:
error("Value()")
def procedure():
global currentTokenIndex
global TokenString
token = TokenString[currentTokenIndex];
if token in ['+','-','*','/']:
Operator()
elif token=='(':
LAMB()
elif token=='ID':
match('ID')
else:
error('procedure()')
def Operator():
match( ['+','-','*','/'] )
def LAMB():
match( '(' )
match( 'lambda' )
match( '(' )
ArguRefList()
match( ')' )
exp()
match( ')' )
def exp_():
global currentTokenIndex
global TokenString
token = TokenString[currentTokenIndex]
if token in ['(','"','ID','NUM']:
exp()
exp_()
# follow set of exp_ is [')']
elif token == ')':
return
else:
error("exp_()")
def ArguRefList():
global currentTokenIndex
global TokenString
token = TokenString[currentTokenIndex]
if token=='ID':
match('ID')
ArguRefList()
elif token==')':
return
else:
error("ArguRefList()")
def DEF():
match('(')
match('define')
DEFOBJ()
DEFBODY()
match(')')
def DEFOBJ():
global currentTokenIndex
global TokenString
token = TokenString[currentTokenIndex]
if token == 'ID':
match('ID')
elif token == '(':
match('(')
match('ID')
ArguRefList()
match(')')
else:
error('DEFOBJ()')
def DEFBODY():
global currentTokenIndex
global TokenString
token = TokenString[currentTokenIndex]
# special process
if token == '(':
next_token = TokenString[currentTokenIndex+1]
if next_token == 'define':
DEF()
DEFBODY()
else:
exp()
DEFBODY()
elif token==')':
return
elif token=='ID':
match('ID')
else:
error( "DEFBODY()" )
def scan():
TokenString = []
line = filter(lambda x:x!='',raw_input().strip().split(' '))
TokenString.extend(line)
while line:
line = filter(lambda x:x!='',raw_input().strip().split(' '))
TokenString.extend(line)
return TokenString
if __name__ == "__main__":
TokenString = scan()
Lisp()