I have an NFA and I want to make an equivalent version of it as a DFA. What will the final DFA diagram look like?
This is the NFA I want to find an equivalent DFA for.
My attempt:
I've constructed a transition table:
+-------+----+----+----+
| State | 0 | 1 | Ɛ |
+-------+----+----+----+
| q0 | q1 | - | q1 |
| q1 | - | q2 | - |
| q2* | q2 | q2 | - |
+-------+----+----+----+
Since I have epsilon as a possible input, I'm a bit confused. What would the resulting DFA look like?