Tagged Questions
5
votes
2answers
693 views
A succinct description of NFA to DFA conversion?
Can someone much brighter than I succinctly describe to the SO community the NFA to DFA conversion algorithm? (Preferably in 500 words or less.) I've seen diagrams and lectures that have only served ...
5
votes
2answers
405 views
Efficient algorithm for converting a character set into a nfa/dfa
I'm currently working on a scanner generator.
The generator already works fine. But when using character classes the algorithm gets very slow.
The scanner generator produces a scanner for UTF8 ...
3
votes
2answers
92 views
How to figure out if a regex implementation uses DFA or NFA?
I'm facing the question, whether a certain regex implementation is based on a DFA or NFA.
What are the starting points for me to figure this out. One could also ask: What am I looking for? What are ...
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
4answers
2k views
DFA vs NFA engines, what is the difference in their capabilities and limitations?
Look for a non-technical explanation of the difference between DFA vs NFA engines based on their capabilities and limitations. Thanks!
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 ?
3
votes
3answers
233 views
Finite Automata Library writen in F#
Could you recommend an open source library written in F# which provides generic types for FA construction and basic algorithms (NFA to DFA transformation, FA minimization ...)?
2
votes
1answer
135 views
NFA/DFA with variable transition conditions
Good night,
Let's suppose I have a class which implements a NFA/DFA whose transitions are stored in a .NET Dictionary structure, and which takes an input word and recognizes a set of words derivable ...
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.
...
2
votes
3answers
796 views
questions on nfa and dfa
Hope you help me with this one....
I have a main question which is ''how to judge whether a regular expression will be accepted by NFA and/or DFA?
For eg. My question says that which of the regular ...
1
vote
3answers
386 views
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 slower to arrive at the accept state ...
1
vote
1answer
136 views
Am I correct? (Finite Automata)
I was given a regular expression, and I am suppose to covert it to NFA and then DFA. Here's the regular expression:
a ( b | c )* a | a a c* b
Then I coverted this to NFA using thomson's ...
1
vote
0answers
452 views
time complexity trade offs of nfa vs dfa
(i found the answer, its below in comments for anyone else)
i am looking for a discussion on which is better used and in what circumstanes in a compiler an nfa or dfa. what are the time complexity ...
1
vote
1answer
632 views
Java library for converting NFA to DFA
I am looking for a Java library which can convert Non-deterministic Finite Automaton to Deterministic Finite Automaton.
Is there any?
1
vote
2answers
360 views
library for converting regular expressions to NFAs?
Is there a good library for converting Regular Expressions into NFAs? I see lots of academic papers on the subject, which are helpful, but not much in the way of working code.
My question is due ...
0
votes
0answers
33 views
Need to generate a payload for particular Regular Expression (PCRE) [closed]
I need some command line tool in Linux that will generate a payload of say 1 MB for me that will have a few matches for a particular Regular Expression.
Something like if I give a particular PCRE to ...
0
votes
1answer
57 views
How to determine if my NFA is correct?
The obvious choice is to exhaust all possible inputs. I think I did. But I am not very sure whether it's valid and I didn't break any rules of non-deterministic finite automata.
My NFA is given by: ...
0
votes
1answer
60 views
How to convert (ab u aab u aba)* into a NFA?
(ab u aab u aba)*
I did it but I would like some feedback on its correctness:
If it is correct: Can we simplify (ab u aab u aba)* any further?
If not: What did I miss?
EDIT: It seems I am missing ...
0
votes
2answers
474 views
DFA Minimization Brzozowski algorithm
I am trying to implement Brzozowski's algorithm for minimizing my DFA
Following is the algorithm for the same.
DFA = d(r(d(r(NFA))))
where r() is reversal of NFA and D() converts NFA to DFA.
But ...
0
votes
2answers
597 views
convert nfa to dfa
i want to write a program that convert nfa to dfa ,
user draw a graph then Program convert it to dfa .
how can i do it?
0
votes
1answer
360 views
NFA to DFA conversion whose language is the complement of L(A)
Can someone please help me with this question?
Describe an algorithm that converts an NFA into a DFA whose language is the complement of L(A). The complement should be taken with respect to the ...
0
votes
1answer
215 views
Has anyone used RE2 in a C# application?
I started my search a for a decent Regular Expression engine. It landed me to this page Benchmark of Regex Libraries. I decide to use RE2 becuase it seems to be the best FSA engine in this list.
...
-1
votes
1answer
94 views
Can below problem be solved using a dfa?
Find an nfa that accepts {a}* and is such that if in its transition graph a single edge is removed without any other changes, the resulting automaton accepts {a}.
-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 ...