Tagged Questions
10
votes
5answers
217 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?` -> ...
7
votes
5answers
819 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
771 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
415 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
103 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 ...
2
votes
4answers
238 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 ...
0
votes
2answers
499 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
354 views
what is the McNaughton-Yamada Algorithm?
I am needing to construct a DFA using the McNaughton-Yamada algorithm for a CS class. The problem is the algorithm is supplemental material and I am not clear on what it is exactly. Is it a method for ...