标签: parsing compiler-construction language-agnostic ll
S->(A) A->CB B->;A|ε C->x|S
我找到了语法的 First :
First(S)={(} First(B)={;,ε} First(C)={x,(} First(A)=First(C)={x,(}
我无法找到语法的 Follow 。
答案 0 :(得分:0)
关注集是
Follow(S)={$,),;} Follow(B)={)}
Follow(S)={$,),;}
Follow(B)={)}
Follow(C)={:,)}
Follow(A)={)}