- 1、本文档共82页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 5、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 6、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 7、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 8、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
review-learngroup
Dangling else x := 3 if x 2 then if x 4 then x := 1 else x := 5 So what is x? Ambiguous grammar statement := IF expression THEN statement | IF expression THEN statement ELSE statement | otherstatement Unambiguous grammar statement := st1 | st2 st1 := IF expression THEN st1 ELSE st1 | otherstatement st2 := IF expression THEN statement | IF expression THEN st1 ELSE st2 Ambiguous vs. unambiguous Exercise Show that the following grammar is ambiguous. S ? AB | aaB A ? a | Aa B ? b Construct an equivalent grammar that is unambiguous. Parsing In practical applications, it is usually not enough to decide whether a string belongs to a language. It is also important to know how to derive the string from the language. Parsing uncovers the syntactical structure of a string, which is represented by a parse tree. (The syntactical structure is important for assigning semantics to the string -- for example, if it is a program). Parsing Let G be a context-free grammar for C++. Let the string w be a C++ program. One thing a compiler does -- in particular, the part of the compiler called the “parser” -- is determine whether w is a syntactically correct C++ program. It also constructs a parse tree for the program that is used in code generation. There are many sophisticated and efficient algorithms for parsing. You may study them in more advanced classes (for example, on compilers) or come across them on your own. We will not discuss them in this class. Theorem 3.3 Every language generated by a right-linear grammar is regular. Proof: Specify a procedure for automatically constructing an NFA that mimics the derivations of a right-linear grammar. Theorem 3.3 Justification: The sentential forms produced by a right linear grammar have exactly one variable, which occurs as the rightmost symbol. Assume that our grammar has a production rule D ? dE and that, during the derivation of
您可能关注的文档
- 关于运用《郑义门》廉洁动漫片开展家规家训教育的通知.doc
- 广泛性焦虑障碍.ppt.ppt
- hr职业素养与必备技能.ppt
- 物品申购系统说明书-爱家家居.doc
- 华商现金增利货币市场基金2016年国庆假期前暂停大额申购(含定期.doc
- 北京大学申请购置大型贵重仪器可行性论证报告表-北京大学实验室与.doc
- 第七條-臺灣證券交易所.doc
- 乾元—私享型-建设银行.doc
- 国内采购合同-中山大学政府采购与招投标管理中心.doc
- 基金合同-中国邮政储蓄银行.doc
- 全英文讲解稿Teacher’s Follow-up Moves during Classroom Interaction in the CCEI project.ppt
- What are we going to study today 第一课讲解稿件.ppt
- 第四章 循环结构(一).ppt
- Superkids 5 Unit 4 Planning a fair第四单元课件.ppt
- SWOT分析教学内容.ppt
- Techniques That Might Smile upon Mona Lisa unit 9第九单元英语.ppt
- TALK SHOW脱口秀全英文简析.ppt
- TFT-LCD Array基板&Cell工艺流程.ppt
- The Gift of the Magi(全英文讲解稿).ppt
- TPS---看板管理稿件.ppt
文档评论(0)