MCS-388 Homework 3 (Spring 2006)

Due: March 7, 2006

  1. Using the grammar of Exercise 4.1 (p. 267) and the input string (a,(a),a)
    1. Show a rightmost derivation, with the handle underlined in each right-sentential form (including the final sentence, but excluding the initial start symbol).
    2. Show the steps of a shift-reduce parse, in the form of Figure 4.22 on page 199.
    3. Show the parse tree, and label each terminal in the parse tree with the line number of the corresponding shift step in your shift-reduce parse, and each nonterminal with the line number of the corresponding reduce step.
  2. Each of the following two grammars generates the language of all strings of as with positive even lengths. Grammar 1 is

    S -> a S a
    S -> a a
    

    and Grammar 2 is

    S -> a a S
    S -> a a
    

    Of these two grammars, one of them is suitable for shift-reduce parsing, and in fact you can successfully use any of the SLR(1), LR(1), or LALR(1) parser construction techniques. The other will not work using any of the three techniques or any other technique that uses limited lookahead.

    1. First, determine which of the two grammars can be parsed with just one symbol of lookahead. Consider an input that is a long, even-length string of as, such as aaaaaaaa or aaaaaaaaaa. With each of the two grammars, there will be some point at which a reduction by the production S -> a a needs to occur. At what point in the string will this need to happen using grammar 1? At what point when using grammar 2? This should tell you which grammar is suitable for use with one symbol of lookahead. (If not, you can try creating canonical LR(1) parsers for each and see which you get stuck on.)
    2. Now, for the workable grammar, construct a parser using whichever of SLR(1), LR(1), or LALR(1) you prefer. Augment the grammar, draw the state machine, and then construct the parsing tables.


Course web site: http://www.gac.edu/~max/courses/S2005/MCS-388/
Instructor: Max Hailperin <max@gustavus.edu>