2
votes
2answers
78 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 …
0
votes
3answers
130 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 …
2
votes
1answer
447 views
DFA based regular expression matching - how to get all matches!
Hi!
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:
…
3
votes
2answers
189 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 …
1
vote
2answers
146 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 …
5
votes
5answers
266 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?
