Theoretical Aspects of Lexical Analysis/Exercise 7

From Wiki**3

< Theoretical Aspects of Lexical Analysis
Revision as of 18:45, 28 March 2009 by Root (talk | contribs) (New page: __NOTOC__ Compute the non-deterministic finite automaton (NFA) by using Thompson's algorithm. Compute the minimal deterministic finite automaton (DFA).<br/>The alphabet is Σ = { a, b }. I...)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Compute the non-deterministic finite automaton (NFA) by using Thompson's algorithm. Compute the minimal deterministic finite automaton (DFA).
The alphabet is Σ = { a, b }. Indicate the number of processing steps for the given input string.

  • G = { a*|b, a*, b*|a }, input string = aababb

NFA

The following is the result of applying Thompson's algorithm. State 8 recognizes the first expression (token T1); state 12 recognizes token T2; and state 20 recognizes token T3.


DFA

Determination table for the above NFA:

In α∈Σ move(In, α) ε-closure(move(In, α)) In+1 = ε-closure(move(In, α))
- - 0 0, 1, 2, 3, 5, 6, 8, 9, 10, 12, 13, 14, 15, 17, 18, 20 0 (T1)
0 a 4, 11, 19 3, 4, 5, 8, 10, 11, 12, 19, 20 1 (T1)
0 b 7, 16 7, 8, 15, 16, 17, 20 2 (T1)
1 a 4, 11 3, 4, 5, 8, 10, 11, 12 3 (T1)
1 b - - -
2 a - - -
2 b 16 15, 16, 17, 20 4 (T3)
3 a 4, 11 3, 4, 5, 8, 10, 11, 12 3 (T1)
3 b - - -
4 a - - -
4 b 16 15, 16, 17, 20 4 (T3)

Graphically, the DFA is represented as follows:


The minimization tree is as follows. Note that before considering transition behavior, states are split according to the token they recognize.


The tree expansion for non-splitting sets has been omitted for simplicity ("a" transitions for super-state {0, 1, 3}, and "a" and "b" transitions for super-state {1,3}).

Input Analysis