递归下降解析器:如何找到 FIRST、FOLLOW 和 PREDICT 集?
我正在寻找给定语法时 RDP 的 FIRST、FOLLOW 和 PREDICT 集定义的良好解释。
I'm looking for a good explanation of the definitions of the FIRST, FOLLOW, and PREDICT sets of a RDP when given a grammar.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试《编程语言语用学》,作者:Michael L. Scott(Morgan Kaufmann)。 第 2 章介绍了解析。第 2.2.3 节描述了递归下降解析; 2.2.5 中的first 和follow 集。
Try Programming Language Pragmatics, by Michael L. Scott (Morgan Kaufmann). Parsing is covered in chapter 2. Recursive-descent parsing is described in section 2.2.3; first and follow sets in 2.2.5.
您可以使用计算预测集、第一集和跟随集自动计算第一集、跟随集和预测集来自 BNF(巴科斯诺尔范式)语法规范,无需下载任何内容。 这是验证答案或自动化繁琐工作的好方法。
如果您想手动执行此操作,Dragon Book(第二版)涵盖见第 221-222 页。
You can automatically calculate first, follow, and predict sets using Calculate Predict, First, and Follow Sets from BNF (Backus Naur Form) Grammar Specification without having to download anything. It's a good way to verify answers or automate the tedium.
If you want to do it manually, the Dragon Book (2nd ed) covers it on pages 221-222.