Converting NFAs to DFAs

fa

  • This can be achieved
  • = the set of NFA states reachable from NFA state by zero or more transitions.
  • Steps
    1. Pick the with its closure, create a “super-set” .
    2. For each character in the alphabet, find the set of NFA states that can be reached from the super-set .
    3. Also include the closures, to form a new super-set.
    4. If the super-set is not in the list, add it to the list. The super-sets can be merged.