版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認領
文檔簡介
1、.CS 431, Assignment 3, Book Questions on Chapter 2Plus One Other QuestionQuestions that you need to answer are listed below, and some solutions or partial solutions are also given. The solutions are not presented as the only possible answers, and what is given may not be complete. It may only be a s
2、tarting point for thinking about a complete, correct answer. Your goal in working the problems should be to come up with a solution, and if in doubt about your answer, compare with whats given here. In theory, even if your answer is not exactly the same, you should see the sense or understand the di
3、rection of the suggestions. If your answer is at odds with what I have suggested you might want to check with me. It is possible that I am off base. It is also possible that you need some things clarified.Book problems: 2.1, a-c; 2.2, a-e; 2.3; 2.4, a-e, and 2.8. Suggested answers to these questions
4、 are given after the following question.Last problem: There is an additional problem that is not from the book. It is stated here. Implement Java code that will correctly translate infix expressions with + and (no parentheses and no other operators) to postfix expressions. A problem solution is give
5、n in the book in C code, so your task is mainly one of adaptation. A starting point for this problem is posted on the Web page. You may use the file InfixToPostfixCut.java as given and simply add the needed methods. You can also do the problem from scratch if you want to. I think it would be prefera
6、ble if you left your implementation recursive rather than changing it to a loop, but that is your choice. Hand in a printout of the methods you added along with your answers to the problems listed above.Starting points for thinking about solutions:2.1. Consider the following context-free grammarS
7、224; S S +(1)S à S S *(2)S à a(3)a) Show how the string aa+a* can be generated by this grammar.Production (3) allows you to generate a string S0 which consists of a.Using S0 as a starting point, production (1) allows you to generate a string S1 which consists of aa+.Production (3) again al
8、lows you to generate a string S2 which consists of a.Then production (2) allows you to generate a string S3 = S1S2* = aa+a*.b) Construct a parse tree for this string.SSSSS*+aaac) What language is generated by this grammar? Justify your answer.Assuming a is an identifier for a numeric value, for exam
9、ple, then the grammar generates a language consisting of all possible arithmetic combinations of a using only the operations + and * and postfix notation. (No particular justification is given. Check to see if you agree.)2.2. What language is generated by the following grammars? In each case justify
10、 your answer. (No justifications are given.)a) S à 0 S 1 | 0 1All strings divided evenly between 0s and 1s, with the sequence of 0s coming first and the sequence of 1s coming second.b) S à + S S | - S S | aThis is the prefix analog to question 2.1.c) S à S ( S ) S | This will generate
11、 arbitrary sequences of adjacent and nested, matched pairs of parentheses.d) S à a S b S | b S a S | All possible strings containing equal numbers of as and bs, with the as and bs arranged in no particular order.e) S à a | S + S | S S | S * | ( S )I dont see a pattern to this that I can ve
12、rbally describe.2.3. Which of the grammars in Exercise 2.2 are ambiguous?To show ambiguity it is sufficient to find any single string that can be parsed in more than one way using the grammar. No such strings spring immediately to mind for the grammars of a through d. (That does not mean that there
13、arent any.) However, e is clearly ambiguous. Let the string S + S * be given. Here are two possible parsings:SSSSS*+SSS+*2.4. Construct unambiguous context-free grammars for each of the following languages. In each case show that your grammar is correct. (Correctness is not shown.)a) Arithmetic expr
14、essions in postfix notation.list à list list +list à list list list à digitlist à 0 | 1 | 2 | | 9b) Left-associative lists of identifiers separated by commas.list à list, idlist à idc) Right-associative lists of identifiers separated by commas.list à id, listlist &
15、#224; idd) Arithmetic expressions of integers and identifiers with the four binary operators +, -, *, /.Add the following rule to the grammar given at the end of section 2.2:factor à identifiere) Add unary plus and minus to the arithmetic operators of (d).Add the following rules to the grammar:
16、factor à +factorfactor à -factor2.8 Construct a syntax-directed translation scheme that translates arithmetic expressions from postfix notation to infix notation. Give annotated parse trees for the inputs 95-2* and 952*-.Here is a simple grammar that can serve as a starting point for the s
17、olution of the problem:string à digit string operator| string digit operator| digitdigit à 0 | 1 | 2 | | 9operator à * | / | + | -Here is an annotated parse tree of the first expression:string: 95-2*string: 95-digit: 2digit: 5*string: 92digit: 9-59The first production applied in formi
18、ng this tree was: string à string digit operator. Notice that it would have been just as possible to apply the production: string à digit string operator. If that had been done you would have then had to parse the string “5-2”. This result would not parse and it would be necessary to backt
19、rack and choose to apply the other production. At the next level down it doesnt matter which production is chosen.string: 952*-digit: 9string: 52*digit: 5-string: 22digit: 9*59In this example there is no choice about which production to apply first. At the second level there is a choice but it doesn
20、t make a difference. The lack of choice at the first level illustrates clearly how you could tell whether or not the production you have chosen is the correct one, assuming you could look that far ahead: If the string that you have parsed on the right hand side does not end in an operator, then the
21、production choice is not correct. It is also possible to see that if you could specify the order in which productions are tried, you could avoid backtracking. If you always tried to parse using this production first: string à string digit operator and tried the other one if that one failed to a
22、pply, you would avoid backtracking. But again, such an approach is not allowed. The question of backtracking is discussed on pages 45 and 46 of the book. The upshot of the matter is that this grammar isnt suitable for predictive parsing.There is another matter that will require a change in the gramm
23、ar so that a syntax-directed translation scheme can be devised. At the top of page 39 in the book the term “simple” is defined as it applies to a syntax-directed definition. The requirement is that the order of non-terminals on the right hand side of a production agree with the order of the correspo
24、nding symbols generated as the desired output. Other symbols or terminals may come before, between, or after the output for the non-terminals. Under this condition the output can be generated from a depth first traversal of the annotated tree. The problem with the grammar given above is that all of
25、the operators are symbolized using the non-terminal “operator”. However, in the translation from postfix to infix, it is the position of the operator that changes. That means that even though tedious, for practical reasons the productions have to be rewritten with the operator symbols in-line as ter
26、minals:string à digit string *| digit string /| digit string +| digit string | string digit *| string digit /| string digit +| string digit | digitdigit à 0 | 1 | 2 | | 9The problem only gets better and better, or worse and worse, depending on your point of view. Postfix notation does not
27、require parentheses. The relative positions of the operands and operators unambiguously determine the order of operations. This means that an arbitrary postfix expression may enforce an order of operations which would not occur naturally in an unparenthesized infix expression. In particular, 95-2* d
28、oes not translate to 9 5 * 2, where the multiplication would be done first. It translates to (9 5) * 2. It is not an attractive proposition to try and implement a translation scheme that would only insert parentheses when needed. It is much more convenient to fully parenthesize the infix translation
29、 whether needed or not. The unneeded parentheses do not adversely affect the meaning of the arithmetic.Having said all of the above, here is my suggested syntax-directed translation scheme, that is, a context-free grammar with embedded semantic actions that will generate the infix translation of a postfix input:string à print(“
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責。
- 6. 下載文件中如有侵權(quán)或不適當內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 2014-2017年中國新型煤化工水處理行業(yè)技術發(fā)展現(xiàn)狀及未來發(fā)展趨勢報告
- 2024至2030年中國手動鋼筋切斷機數(shù)據(jù)監(jiān)測研究報告
- 2024至2030年中國壁紙清洗劑數(shù)據(jù)監(jiān)測研究報告
- 2024至2030年中國女式皮涼鞋數(shù)據(jù)監(jiān)測研究報告
- 2024至2030年中國墻面金屬吸聲裝飾板數(shù)據(jù)監(jiān)測研究報告
- 2024至2030年中國嗎啉雙胍數(shù)據(jù)監(jiān)測研究報告
- 2024至2030年中國單色圖文顯示屏行業(yè)投資前景及策略咨詢研究報告
- 2024至2030年中國涼果腌制品行業(yè)投資前景及策略咨詢研究報告
- 2024至2030年中國二手電腦行業(yè)投資前景及策略咨詢研究報告
- 2024至2030年中國T型母排接頭保護盒數(shù)據(jù)監(jiān)測研究報告
- MOOC 成長中的音樂徜徉-浙江師范大學 中國大學慕課答案
- 工會組織觀影活動方案策劃
- 車輛運輸保障方案
- 中醫(yī)藥納米技術與緩控釋制劑
- 用車安全培訓資料
- 食品生產(chǎn)企業(yè)食品安全風險日管控、周排查、月調(diào)度工作制度
- 《四川九寨溝》課件
- 《員工晉升管理》課件
- 防校園欺凌家長會
- 中國老年糖尿病診療指南(2024版)解讀
- Music-中西方音樂的區(qū)別
評論
0/150
提交評論