Regular expression to NFA [A-E]|[A-E] [A-E] [A-E]|[A-E][A-E][A-E] [A-E]

234 Views Asked by At

I have this regular expression

[A-E]|[A-E]{3}|[A-E]{4} 

[A-E]|[A-E] [A-E] [A-E]|[A-E][A-E][A-E] [A-E]

it recognizes strings of A,B, ABC, BCD, BCDE, etc.

I want to construct the NFA but have no idea if i am correct

  1. I have done this http://s1.postimg.org/627870q8v/image.png

  2. or this

http://s10.postimg.org/sqbxf2t5l/image.png

Which one is correct ?

my [A-E] NFA is

http://s17.postimg.org/4b0q1w1mn/image.png

1

There are 1 best solutions below

2
On BEST ANSWER

The minimal DFA is the following

0 -> 1 -> 2 -> 3 -> 4

with every transition arch signed by [A-E] and with final states = {1,3,4}

In fact this DFA is equivalent with both your NFA. Nevertheless I find the second to be clearer.