将 BNF 转换为 EBNF
我需要知道如何将下一个 BNF 转换为 EBNF,这样它将帮助我更多地了解它们是如何工作的
S-> aI1I2 | epsilon
I1-> I1e | b
I2-> cd | cS
注意:epsilon 意味着空集
I need to know how to convert the next BNF to EBNF so it will help me understand more how they work
S-> aI1I2 | epsilon
I1-> I1e | b
I2-> cd | cS
note: epsilon means the empty set
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请考虑以下内容:
Please consider these: