I'm kind of confused by the concept of regular language. Since all regular language can be accepted by a dfa and dfa always has loops in it. So it seems like the dfa can accpet infinite number of strings. Does it mean all regular language is infinite? What about empty set. Is it a regular language?
feedback
|
|
The definition of regular language includes the empty set. It also includes the singleton language | |||
|
feedback
|
|
No, not all DFAs have loops in them. A regular language is one which can be accepted by a regular expression (using the mathematical, rather than pcre definition), and for example 'a' is a regular expression which matches only the exact string 'a'. So { a } is a regular language. :) A DFA for this language is:
| |||
|
feedback
|