登录 注册
当前位置:主页 > 资源下载 > 32 > 龙书《编译原理》第二版的全部习题解答已调整为手机可查看的格式

龙书《编译原理》第二版的全部习题解答已调整为手机可查看的格式

  • 更新:2024-05-31 19:19:14
  • 大小:917KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:讲义 - 课程资源
  • 格式:RAR

资源介绍

# Exercises for Section 2.2 ### 2.2.1 Consider the context-free grammar: S -> S S + | S S * | a 1. Show how the string `aa+a*` can be generated by this grammar. 2. Construct a parse tree for this string. 3. What language does this grammar generate? Justify your answer. #### Answer 1. `S` -> `S` S * -> `S` S + S * -> a `S` + S * -> a a + `S` * -> a a + a * ………………