如何找到以下语法的后续内容

时间:2016-05-05 19:11:14

标签: 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

1 个答案:

答案 0 :(得分:0)

关注集是

Follow(S)={$,),;} Follow(B)={)}

Follow(C)={:,)}

Follow(A)={)}