0
我想這個語法轉化爲明確的語法:是這個語法歧義
S -> if E then S
| if E then S else S
| a
E -> b
我發現了一個解決方案,它比我的解決方案比較複雜,但我不知道如果我的解決辦法是正確的:
S -> if E then T else S
| if E then S
| a
T -> if E then T else T
| a
E -> b
那麼我的解決方案是否正確?