http://wwwc.moex.gov.tw/ExamQuesFiles/Question/094/035335200.pdf
第四题~写出字串所有的剖析树
字串 if a then if b then goto x else if c then goto y else goto z
我简化一下 if(1) if(2) else(A) if(3) else(B)
我的参考书是2013胡世雄的程式语言 他只画了两棵树
第一组 2搭A和3搭B
第二组 1搭A和3搭B
但我自己可以画出第三组 1搭B和2搭A
<stm>
<if stm>
(1) (B)
if <bexp> then <stm> else <stm>
| | |
a <if stm> goto z
| | | | | |
if <bexp> then <stm> else <stm>
(2) | | (A) |
b goto x <if stm>
| | | |
if <bexp> then <stm>
| |
c goto y
http://wwwc.moex.gov.tw/ExamQuesFiles/Question/100/100060_34430.pdf
第六题的第一小题 要写出符合语法且长度不超过3的所有句子
书上给的答案是 a,#a,a!a,a@a 但为什么##a不行?
因为是一元运算子?但符合语法不是吗?
感谢解答