(no title)
dpkendal | 10 years ago
See https://swtch.com/~rsc/regexp/ for information on finite-state-machine implementations of regexp matching.
dpkendal | 10 years ago
See https://swtch.com/~rsc/regexp/ for information on finite-state-machine implementations of regexp matching.
thaumasiotes|10 years ago
What? Why is that? If the NFA has n states, then the DFA in principle might need one state for every possible set of states the NFA might be in, of which there are 2^n. Where does n^2 come from?
dpkendal|10 years ago