Processing math: 2%

The Book of Gehn

I found 1 post.


From a Regex to a Nondeterministic Finite Automata

Tags: regex, automata, state machine, NFA, string

July 25, 2019

Before building complex state machine we need to learn the basics blocks.

When the solution to a problem can be seen as set of states with transitions from ones to others, modeling them as a nondeterministic finite automatas makes clear how the solution works and allows to spot deficiencies.

A regular expression is an example of this. As an introductory step let’s review how to turn a regex into a NFA.

Take at look of the source code in Github.

- Martin Di Paola