Starting from:
$30

$24

Homework - Chapter 2

You will create a number of diagrams in this homework. Feel free to typeset them or just draw them by hand and attach a picture (but please ensure that they are legible).


    1. (6 points) Consider the following grammar: N1 ! a N2
N2   ! b N3

N3   ! N4 c

N4   ! d

(a) How many productions are there? (b) Which symbols are terminals? (c) Which symbols are nonterminals? (d) What is the start symbol? (e) Which symbols appear in the production heads? (f) Which symbols appear in the production bodies?

    2. (6 points) Consider the following grammar:

list    ! list + digit

list    ! list - digit

list    ! digit
digit    ! 0|1|2|3|4|5|6|7|8|9

        (a) How many productions are there? (b) Which symbols are terminals? (c) Which symbols are nonterminals? (d) What is the start symbol? (e) Which symbols appear in the production heads? (f) Which symbols appear in the production bodies?

    3. (8 points) Consider the following grammar:

            (1) A!AA+

            (2) A!AA*

            (3) A  ! x

Show how the string xx*x+x+ can be generated by the grammar. List the production rules used in each step.

    4. (15 points) Give four examples of strings that can be generated by each of the following grammars. Describe in words the language the grammar yields. State whether the grammar is ambiguous or unambiguous. If ambiguous, give a string that can generate multiple parse trees and show the parse trees.

        a) A  ! x A y | x y

        b) A  ! + A A | - A A | x

        c) A  ! A(A)A|

        d) A  ! x A y A | y A x A |

        e) A  ! x | A + A | A A | A * | ( A )



    5. (20 points) Given the following grammar, show the parse trees for

            (a) 8-3*2+4

            (b) 6*2/4+8

Use correct precedence and associativity.





1
expr    ! expr + term

expr    ! expr - term

expr    ! term
term    ! term * factor

term    ! term / factor

term    ! factor

factor    ! 0
factor    ! 1
...
factor    ! 9



    6. (8 points) Construct an unambiguous grammar for arithmetic expressions (using operators +-*/) in postfix notation.

    7. (7 points) Construct an unambiguous grammar for a string of x characters, each separated by a comma. The list should be right-associative.

    8. (14 points) Construct an unambiguous grammar for arithmetic expressions of integers and identifiers with the four binary operators +,-,*,/, as well as unary + and - operators. Use “Integer” as the terminal symbol for an integer and “Ident” as the terminal symbol for identifier. Your language need not support parentheses.

    9. (12 points) Show the annotated parse tree for 8+2-4+1 for the following grammar.

















    10. (14 points) Write a syntax-directed translation scheme that translates arithmetic expressions from infix notation into prefix notation in which an operator appears before its operands. Note that this is a translation scheme, not a syntax directed definition. You will add semantic actions to the following grammar:

expr ! expr1 + term expr ! expr1 - term expr ! term

term ! 0 term ! 1
...
term   ! 9



    11. (10 points) Given the solution to the previous problem, give the annotated parse trees for the inputs 3-1+2 and 2+3-1. Use correct precedence and associativity.

2
    12. (5 points) Describe the relationship between recursive-descent parsing and predictive parsing.

    13. (5 points) Explain why the following grammar is suitable for a predictive parser.

list    ! + list list

list    ! - list list

list    ! digit
digit    ! 0|1|2|3|4|5|6|7|8|9



    14. (40 points) Write a predictive parser in Java for the following grammar with its translation scheme: list ! + {print(’(’)} list {print(’+’)} list {print(’)’)}
list
!
- {print(’(’)} list {print(’-’)} list {print(’)’)}
list
!
digit
digit
!
0 {print(’0’)} | 1 {print(’1’)} | ... | 9 {print(’9’)}
You will not actually build a parse tree, but rather will execute the semantic actions to output infix notation with parentheses. Print “error” if you encounter an error. Put your code in Infix.java and make sure you pass all tests in InfixTest.py.

    15. (6 points) Eliminate the left recursion in the following grammar. Your answer will be a new grammar. A ! A x y z
A  ! w

    16. (6 points) Eliminate the left recursion in the following grammar. Your answer will be a new grammar. S ! S x y z | S g h | w

    17. (8 points) Show the tree of symbol tables for the following code. Put a star by the symbol tables that are applicable at line 10 of the code.

1
main() {




2

int
b = 1;


B1
3
{






4











int a = 2;

B2
5


bool b = 2;




6
{





7



char b = 3;
B3


8
}












9
{





10



int a = 4;
B4

    11 int b = 4;

    12 {

    13 float a = 5;B5
    14 }

    15 }

    16 }

17}


    18. (10 points) Based on the following grammar, draw an annotated parse tree that shows how the syntax tree for a-(b+c) is constructed. mknode() is a function that creates a node for a syntax tree. A good way to do this is to first draw the parse tree, then annotate the leaves and propogate the annotations


3
up the tree. After you’re done, E.n of the root of the parse tree will be the abstract syntax tree. Your parse tree will look something like the following:


















You can see that this particular node of the parse tree has three children and T.n is a syntax subtree with three nodes. Here is the grammar:


Production
Schema



E !E1
+T
E.n = mknode(+, E1.n, T.n)
E !E1
-T
E.n = mknode(-, E1.n, T.n)
E !T

E.n = T.n
T !(E)
T.n = E.n
T !id

T.n = mknode(id)





































4

More products