Tagged Questions

4
votes
2answers
273 views

Can I Determine the Set of First Chars Matched by Regex Pattern?

I would like to be able to compute the set of all characters which may be matched as the first character in a string by a given instance of java.util.regex.Pattern. More formally, given the DFA ...
3
votes
1answer
1k views

NFA/DFA implementation in C#

Good night, Does anyone know of any good NFA and DFA implementation in C#, possibly implementing as well conversions between both? What I would like would be to be able to construct a NFA and then ...
3
votes
1answer
153 views

Syntax for Describing DFA or NFA

Do there exists any Standard Syntax for Describing the Transition Table for an NFA or DFA ?
2
votes
2answers
98 views

If a language (L) is recognized by an n-state NFA, can it also be recognized by a DFA with no more than 2^n states?

I'm thinking so, because the upper bound would be the 2^n, and given that these are both finite machines, the intersection for both the n-state NFA and the DFA with 2^n or less states will be valid. ...
0
votes
0answers
39 views

For what I have to give precedence? (no.of.states) or (modularity<->readability)?

As I stated in this question, I am using DFA to trace all comments,strings etc. And I finished this DFA with 11 states. Now I am about to write DFA to recognize keywords in java. Idea: Initially, ...
-2
votes
0answers
52 views

Ocaml: do NFA to DFA automata algorithm [closed]

I'm kind a newer in Ocaml, and iḿ trying making a work for Theory of COmputation. The main problem is: Receive an NFA automata and pass it to DFA automata; I'm thinking using list, i don't know ...