Tagged Questions
A DFA is a deterministic finite automaton, a simple model of computation that decides membership in regular languages. Each DFA consists of a set of states and a transition function between those states describing how the machine changes in response to new information. DFAs are often used to implement regular expression matchers.
10
votes
5answers
212 views
Create set of all possible matches for a given regex
I'm wondering how to find a set of all matches to a given regex with a finite number of matches.
For example:
All of these example you can assume they start with ^ and end with $
`hello?` -> ...
8
votes
2answers
108 views
Derive minimal regular expression from input
I have a remote "agent" that returns "yes" or "no" when handed a string. Communicating with this agent is expensive, so I'm hoping to find a library that will allow me to iteratively build a regular ...
7
votes
5answers
773 views
Regular expressions Equivalence
Is there a way to find out if two arbitrary regular expressions are equivalent? Looks like complex problem to me, but there might be some DFA simplification mechanism or something?
5
votes
2answers
697 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
406 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 ...
5
votes
6answers
831 views
DFA Based Regular Expression Engines for Java with Capture
Are there any (free) regular expression engines for Java, that can compile a regular expression to a DFA, and do group capturing while matching the DFA ?
I've found dk.brics.automaton and jrexx, ...
4
votes
3answers
1k views
self-taught compiler courses / good introductory compiler books?
Does anyone know of online course / university lectures that comprise a typical compiler course? I've had theory of computing but unfortunately my school didn't offer a course in compiler ...
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
2answers
94 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
2answers
51 views
DFA string validation
i have a program that simply takes all the states as a set of states as a input.
and then the next input that is taken is the initial state among the set of states and then set of final states.
The ...
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 ...)?
3
votes
5answers
201 views
Efficient mass string search problem
The Problem: A large static list of strings is provided. A pattern string comprised of data and wildcard elements (* and ?). The idea is to return all the strings that match the pattern - simple ...
3
votes
1answer
1k views
DFA based regular expression matching - how to get all matches!
I have a given DFA that represent a regular expression.
I want to match the DFA against an input stream and get all possible matches back, not only the lestmost-longest match.
For example:
regex: ...
2
votes
2answers
38 views
Computability: Is the language of DFAs that receive even-length words in P?
I've been struggling with this one for a while and am not able to come up with anything. Any pointers would be really appreciated.
The problem is: given the language of all DFAs that receive only ...
2
votes
1answer
92 views
How can I simplify token prediction DFA?
Lexer DFA results in "code too large" error
I'm trying to parse Java Server Pages using ANTLR 3.
Java has a limit of 64k for the byte code of a single method, and I keep running into a "code too ...
2
votes
1answer
80 views
Producing a picture of DFA that recognizes given regexps
Is there a tool that will accept a list of regexps and produce a picture of the minimal DFA that will recognize these regexps, each into its corresponding final state?
It should look something like ...
2
votes
4answers
226 views
What is the algorithm for generating a random Deterministic Finite Automata?
The DFA must have the following four properties:
The DFA has N nodes
Each node has 2 outgoing transitions.
Each node is reachable from every other node.
The DFA is chosen with perfectly uniform ...
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
99 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
296 views
Data Structure to represent a DFA
I was wondering, what would be the best data structure to represent a DFA?
I am looking at converting a regular expression to a DFA and make this particular functionality as a library in Java.
The ...
2
votes
2answers
265 views
2
votes
3answers
797 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 ...
2
votes
2answers
256 views
Modelling a Finite Deterministic Automaton via this data *Edit with new code*
I have this input file:
2
3 2 1
ab
1 0
2 0
2 0
2
0 3
abaa
aab
aba
3 3 2
ade
0 1 2
1 2 0
2 1 0
1 2
2 2
a
de
The first line represents the number of test cases.
Each test case starts with 3 ...
1
vote
1answer
62 views
check if two regexes match the same strings in java
I have two regular expressions (simple example: "[0-9]+" and "[0123456789]+"). I'd like to see if they match exactly the same inputs. Is there a built-in function for doing this check in java? If not, ...
1
vote
1answer
131 views
Is a language L = {s ∈ (0 + 1)* | d(s) mod 5 =2 and d(s) mod 7 !=4 } regular?
While reading from a book I had this doubt.
It mentions that
L = {s ∈ (0+1)* | n0(s) mod 7 = n1(s) mod5 =0} is regular
Where n0(s) = number of 0’s in s and n1(s) = number of 1’s in s
Further it ...
1
vote
1answer
100 views
Java tool for matching multiple regular expressions with priorities to multiple strings
I have an unlimited sequence of strings and numerous regular expressions ordered by priorities. For each string in a sequence I have to to find the first matching regular expression and the matched ...
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
4answers
195 views
algorithm for implementing DFA as a linked list
I want to know how to implement a DFA as a linked list in C/C++/Java.
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
1answer
347 views
Using Closure Properties to prove Regularity
Here's a homework problem:
Is L_4 Regular?
Let L_4 = L*, where L={0^i1^i | i>=1}.
I know L is non-regular and I know that Kleene Star is a closed operation, so my assumption is that L_4 is ...
1
vote
2answers
204 views
Minimum number of states needed?
Definition of a language L with alphabet { a } is given as following
L = { ank | k > 0 ; and n is a positive integer constant }
What is the number of states needed in a DFA to recognize L?
In my ...
1
vote
0answers
453 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
216 views
regexp-to-DFA algorithm
I try to write regexp-based lexical analyzer generator, based on regexp to DFA direct translation algorithm described in "Dragon Book".
Now its correctly calculate nullable/firstpos/lastpos/followpos ...
1
vote
1answer
613 views
How do you construct the union of two DFA's?
Does anyone have a straightforward description of the algorithm for constructing the union of two given DFA's? For example, say we have two DFA's over {0,1} where
{w|w has an odd number of ...
1
vote
1answer
637 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
130 views
Creating an Exclusive Or from two Deterministic Finite Automatons (Deterministic Finite-State Machines)
Two DFAs (Deterministic Finite Automaton or Deterministic Fininte-State Machines - Which will be called DFAs from here on)
Defined over the set
DFA 1: L1 = {Q1, E, D1, s1, F}
DFA 2: L2 = {Q2, E, D2, ...
1
vote
1answer
374 views
Parser vs. lexer and XML
I'm reading about compilers and parsers architecture now and I wonder about one thing...
When you have XML, XHTML, HTML or any SGML-based language, what would be the role of a lexer here and what ...
1
vote
2answers
361 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
2answers
45 views
DFA and regular languages
I've been thinking about the following and I think the answer's in the affirmative.
Is it true that every subset of a DFA-acceptable language that is regular is also DFA-acceptable?
0
votes
1answer
28 views
How to convert a non-embedding context free grammer to regular grammer?
Please note that I am aware the undecidability of the conversion of context-free grammer to regular grammer. But given the non-embedding property of the input context-free grammer, is there any ...
0
votes
2answers
59 views
Regex: Matching ',' after zero or odd occurrences of a double quote
I am attempting to pull apart a row from a CSV file without using a parser and all I need to do is split the string based on the commas using php. In itself this is fairly easy if you have no commas ...
0
votes
2answers
60 views
Minimum number of states in a DFA having '1' as the 5th symbol from right
What is the minimum number of states needed in a DFA to accept the strings having '1' as 5th symbol from right? Strings are defined over the alphabet {0,1}.
0
votes
1answer
69 views
How do you prove this pumping lemma example? [closed]
I got this question wrong on my test and was wondering if someone could explain it, showing the steps taken to come to the conclusion. Any help would be appreciated.
In the PL proof for L_neq = ...
0
votes
1answer
58 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
61 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
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, ...