Parameterization:
O(r) time O(r) space algorithm to turn regular expresions into Theta(r) space NFA's with n = Theta(r) and m = Theta(r), where r can be arbitrarily greater than s.
O(k n log n) time O(k n) space algorithm to turn DFA's into minimum-state DFA's.
O(n + m + m log n) time O(m) space algorithm to turn DFA's into minimum-state DFA's.
O(m + r) time O(r) space algorithm to convert regular expressions into McNaughton and Yamada NFA's with n = s + 1 and m = Theta(s**2) in the worst case.
O(m + n + m log n) time O(n) space algorithm to convert any DFA into a minimum-state DFA. Click here to read about the algorithm.
O(r) time O(s) space algorithm to convert regular expressions into compressed O(s) space NFA's; NFA simulation and NFA-to-DFA conversion by the subset construction of Rabin and Scott are both improved by computing the next states U one transition away from an arbitrary set of states U in time O(|V| + |U|). Click here to read about the algorithm.