Exercise
Question Explanation
The correct answer is: 6 7 8
Here are the sets of reachable states after reading in the first i characters
(and following epsilon-transitions):
i substring set of reachable states
------------------------------------------------
0 0 1
1 B 2 3 5 6 7 8 11 12 13
2 B A 2 3 4 5 6 7 8 9 10 11 12 13
3 B A A 2 3 4 5 6 7 8 9 10 11 12 13
4 B A A A 2 3 4 5 6 7 8 9 10 11 12 13
5 B A A A C 6 7 8
6 B A A A C C 6 7 8
Here are all of the edges in the epsilon-transition digraph:
0-> 1
0-> 3
2->10
3-> 4
3-> 9
5-> 6
6-> 5
6-> 7
8-> 9
9-> 3
9->10
10->11