automata-from-regex icon indicating copy to clipboard operation
automata-from-regex copied to clipboard

An interactive c++ program to construct NFA, DFA, and minimized DFA from a given regular expression.

Results 2 automata-from-regex issues
Sort by recently updated
recently updated
newest added
trafficstars

files with topics like what are the real life applications and why we convert dfa to nfa.

This code won't work for any expression having brackets, as well as expressions with a '*' in the beginning followed by other characters. For example, a*b, b*aba, a*bb etc.

bug