nfa
Advantages/Disadvantages of NFA over DFA and vice versa
What are the relative pro\'s and con\'s of both DFA\'s and NFA\'s when compared to each other? I know that DFA\'s are easier to implement than NFA\'s and that NFA\'s are slo开发者_JAVA技巧wer to arri[详细]
2023-03-04 08:37 分类:问答Converting RE -> NFA
I have a question regarding the conversion of regular expressions to no开发者_Go百科n-deterministic finite state automata:[详细]
2023-03-04 05:04 分类:问答Regular language?
I have a compiler question. Determin开发者_开发技巧e whether {(ab)^n | n >= 0} is a regular language?[详细]
2023-02-25 08:35 分类:问答Difference between Transducer and NFA
Ca开发者_StackOverflow中文版n someone tell me how a Transducer differs from a NFA?Transducers have two tapes (input and output). NFAs only have one.[详细]
2023-02-08 02:23 分类:问答Has anyone used RE2 in a C# application? [closed]
Closed. This question is opinion-based. It is not currently accepting answers. 开发者_如何转开发[详细]
2023-02-02 00:17 分类:问答Java library for converting NFA to DFA
I am 开发者_StackOverflow中文版looking for a Java library which can convert Non-deterministic Finite Automaton to Deterministic Finite Automaton.[详细]
2023-01-24 14:33 分类:问答NFA/DFA implementation in C#
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 convert it auto[详细]
2023-01-21 11:51 分类:问答DFA vs NFA engines: What is the difference in their capabilities and limitations?
开发者_JS百科I am looking for a non-technical explanation of the difference between DFA vs NFA engines, based on their capabilities and limitations.Deterministic Finite Automatons (DFAs) and Nondeterm[详细]
2023-01-21 03:14 分类:问答Syntax for Describing DFA or NFA
Do there exists any Standard Syntax for 开发者_运维问答Describing the Transition Table for an NFA or DFA ?You can use the GDL (Graph Description Language) to do this:[详细]
2023-01-20 09:43 分类:问答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[详细]
2023-01-19 23:05 分类:问答