Tagged Questions
A finite automaton (FA) is a mathematical description of an algorithm capable of parsing regular languages. FAs have no external memory, and as such can only take into account a fixed number of previous symbols when processing strings. A deterministic FA (DFAs) is one for which there is only ever one legal transition between states; nondeterministic FAs can be transformed into equivalent DFAs. FAs are the weakest of the commonly-defined automata.
36
votes
14answers
19k views
Is there a typical state machine implementation pattern?
We need to implement a simple state machine in C.
Is a standard switch statement the best way to go?
We have a current state (state) and a trigger for the transition.
switch(state)
{
case STATE_1:
...
25
votes
10answers
13k views
Can regular expressions be used to match nested patterns?
Is it possible to write a regular expression that matches a nested pattern that occurs an unknown number of times. For example, can a regular expression match an opening and closing brace when there ...
17
votes
4answers
1k views
How do you normalize a finite state machine?
How do you find the minimal Deterministic FSM?
Is there a way to normalize non-deterministic FSMs?
Is there a linear time bound algorithm to find the minimal FSM for a given machine?
Is there a ...
15
votes
7answers
599 views
how useful is Turing completeness? are neural nets turing complete?
While reading some papers about the Turing completeness of recurrent neural nets (for example: Turing computability with neural nets, Hava T. Siegelmann and Eduardo D. Sontag, 1991), I got the feeling ...
13
votes
8answers
5k views
Does C# include finite state machines?
I've recently read about the boost::statechart library (finite state machines) and I loved the concept.
Does C# have a similar mechanism ? Or can it be implemented using a specific design pattern?
13
votes
10answers
2k views
Practical non-Turing-complete languages?
Nearly all programming languages used are Turing Complete, and while this affords the language to represent any computable algorithm, it also comes with its own set of problems. Seeing as all the ...
12
votes
9answers
958 views
To use goto or not?
This question may sound cliched but I am in a situation here.
I am trying to implement a finite state automaton to parse a certain string in C. As I started writing the code, I realised the code may ...
8
votes
1answer
392 views
Equation from “Programming Pearls” - can somebody explain me?
It's feel like I'm stuck, my friends. Can somebody explain me pick equations from "Pearls of Functional Algorithm Design", chapter 11 ("Not the maximum segment sum").
Here is the problem (a little ...
8
votes
1answer
185 views
NFA minimization without determinization
It is well-known how one gets from an NFA for a regular language to a minimal DFA. However, the DFA might have an exponentially larger number of states.
What I need is a way to reduce an NFA, giving ...
8
votes
10answers
2k views
State Machines and User Interface work — any examples/experience?
I'm looking for ways to de-spaghttify my front-end widget code. It's been suggested that a Finite State Machine is the right way to think about what I'm doing. I know a State Machine paradigm can be ...
6
votes
3answers
1k views
NFA to DFA question
First, this is not a question asking for the algorithm to convert a NFA to DFA.
It's known (and proved) that the equivalent DFA of a NFA has at most 2n states, even though most of the times it will ...
5
votes
3answers
360 views
What is the fastest way to compute an epsilon closure?
I am working on a program to convert Non-deterministic finite state automata (NFAs) to Deterministic finite state automata (DFAs). To do this, I have to compute the epsilon closure of every state in ...
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
467 views
Testing intersection of two regular languages
I want to test whether two languages have a string in common. Both of these languages are from a subset of regular languages described below and I only need to know whether there exists a string in ...
5
votes
7answers
2k views
Are there any programs to draw and test state machines, turing machines, etc?
When I go back to school after Thanksgiving, I'll be taking a course in CS Theory covering topics such as deterministic and nondeterministic finite state machines, turing machines, pushdown automata ...
4
votes
2answers
66 views
DFA minimization test suite?
I'm looking for a test suite of deterministic finite automata to be used for testing the correctness of DFA minimization algorithms. Could you give me some pointers? Or are there ...
4
votes
6answers
154 views
How the Perl regular expressions dialect/implementation is called?
The engine for parsing strings which is called "regular expressions" in Perl is very different from what is known by the term "regular expressions" in books.
So, my question is: is there some ...
4
votes
2answers
659 views
How to perform FST (Finite State Transducer) composition
Consider the following FSTs :
T1
0 1 a : b
0 2 b : b
2 3 b : b
0 0 a : a
1 3 b : a
T2
0 1 b : a
1 2 b : a
1 1 a : d
1 2 a : c
How do I perform the composition operation on these two FSTs (i.e. ...
4
votes
5answers
268 views
Why does my finite state machine take so long to execute?
I'm working on a state machine which is supposed to extract function calls of the form
/* I am a comment */
//I am a comment
pref("this.is.a.string.which\"can have QUOTES\"", 123456);
where the ...
4
votes
4answers
2k views
Graph drawing algorithms - I'm trying to render finite state automata
I want to write something that will draw finite state automata. Does anyone know any algorithms that are related to this?
EDIT: I should mention that I know about graphviz. I want to build my own ...
4
votes
12answers
1k views
What are Finite State Automata and why should a programmer know about them?
Erm - what the question said. It's something I keep hearing about, but I've not got round to looking into it yet.
(updated) I could look up the definition... but why not (as pointed out by ...
3
votes
1answer
42 views
How do regex engines account for irregularity?
My C is a bit shaky, but I've looked at python's source code and it looks like most of python's re module is implemented by state machines. This comes as no surprise since regular expressions can be ...
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
4answers
163 views
State Machine - Structure To Hold States, Events and pFuncs
If I make a state machine and want to use an interface like this:
AddState ( state1, state2, Key_UP );
AddEvent ( Key_UP );
AddEventFunction ( Key_UP, &UP_Function);
AddStateFunction ( state1, ...
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
4answers
387 views
Levenshtein DFA in .NET
Good afternoon,
Does anyone know of an "out-of-the-box" implementation of Levenshtein DFA (deterministic finite automata) in .NET (or easily translatable to it)? I have a very big dictionary with ...
3
votes
2answers
532 views
Theory of Computation - Showing that a language is regular
I'm reviewing some notes for my course on Theory of Computation and I'm a little bit stuck on showing the following statement and I was hoping somebody could help me out with an explanation :)
Let A ...
3
votes
3answers
2k views
Finite State Machine in Objective-C
Does anyone have a solution for a basic, compact Finite state machine/automata written in Objective-C code?
I am interested in reusable components so that the FSM have states added and actions ...
2
votes
5answers
80 views
How should one proceed to prove (or find) if two regular expressions are same or equivalent?
For example, in an assignment given to me, we were asked to find out if two regular expressions are equal or not.
(a+b+c)* and ((ab)**c*)*
My question is how is one supposed to do that? If I draw ...
2
votes
2answers
100 views
A square root computing turing machine [closed]
I think i am close to this answer but still to confirm can we create a turing machine(At least in Principle) which can work on real number computation and give exact results?**For example finding ...
2
votes
3answers
209 views
What language does this Pushdown Automata (PDA) accept?
Exam tomorrow and the prof let us know a question that would be on it :).
In the context of this diagram, L is epsilon (The empty string), and Z0 is the stack empty symbol.
I've made some progress ...
2
votes
1answer
110 views
Transition Graph per alphabet?
How do you determine how many different Transition Graphs are over a particular alphabet? For example How many TG's are over the alphabet {x, y}. I am taking a class with a similar question from ...
2
votes
1answer
131 views
simulate a deterministic stack automaton (DAS) in c++
I was reading an exercise of UVA, which I need to simulate a deterministic stack automaton, to see
if certain strings are accepted or not by DSA on a given entry in the following format:
The first ...
2
votes
1answer
119 views
Python metaclasses configure classes. But can we configure metaclasses?
I discovered that the existence and use of metaclasses can save you from a lot code-writing by providing an elegant handle on the process of class creation. I use this in my application, where several ...
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
2answers
125 views
Split a string based on each time a Deterministic Finite Automata reaches a final state?
I have a problem which has an solution that can be solved by iteration, but I'm wondering if there's a more elegant solution using regular expressions and split()
I have a string (which excel is ...
2
votes
1answer
171 views
Automated FSM for C
I am looking for a automated finite state machine generator for C? I have seen a few over the internet but unable to decide which one to use. If anybody worked with any such tool then help me to find ...
2
votes
3answers
667 views
Best Self-Learning Books for Finite Automata
I need a Finite Automata Book Full of Examples that I can learn by me self and I can use to prepare for Exams.
2
votes
3answers
101 views
What are the theoretical implications of unbounded lookbehind?
Most languages allow fixed-length or finite-length lookbehind. One notable exception is .NET, which allows the use of the * operator.
However, .NET regexs can already recognize balanced parentheses ...
2
votes
3answers
233 views
Good resources to learn about models of computation?
Out of curiosity, I am trying to identify what model of computation a system I work with is functionally equivalent to, and prove the equivalence. The longer I spend on this problem the more I ...
2
votes
8answers
1k views
What is the use of finite automata?
What is the use of finite automata? And all the concepts that we study in the theory of computation. I've never seen their uses yet.
2
votes
5answers
2k views
Building a lexer in C
I want to build a lexer in C and I am following the dragon book, I can understand the state transitions but how to implement them?
Is there a better book?
The fact that I have to parse a string ...
2
votes
4answers
1k views
How do I build this finite automaton?
I'm studying for a Discrete Mathematics test and I found this exercise which I can't figure out.
"Build a basic finite automaton (DFA,NFA,NFA-lambda) for the language in the alphabet Sigma = {0,1,2} ...
2
votes
7answers
2k views
Can I implement State Transitions for a DFA in Java using java.util.Set
I'm implementing a DFA as close as I can to the formal definition as a learning exercise (and blogging material)
I planned on using a java.util.Set where a set is involved in the definition.
The ...
2
votes
1answer
211 views
How Does Relational Theory Apply in Ways I can Care About while Learning it?
So I'm taking the Discrete Math course from MIT's OpenCourseWare and I'm wondering... I see the connection between relations and graphs but not enough to "own" it. I've implemented a simple state ...
1
vote
1answer
32 views
Application of Brzozowski Algebraic Method on this FA
Earlier, I asked a question on here asking for help with the conversion of a transition-graph of a finite automaton into a regular expression:
Understanding (and forming) the regular expression of ...
1
vote
2answers
49 views
Understanding (and forming) the regular expression of this finite automaton
For the above automaton, the regular expression that has been given in my textbook is the following :
a*(a*ba*ba*ba*)*(a+a*ba*ba*ba*)
I am having trouble deriving this...the following is my ...
1
vote
0answers
51 views
What we can say about a language L satisfying the pumping lemma for regular languages and also the pumping lemma for context free languages?
A language L satisfies the pumping lemma for regular languages and also the pumping lemma for context free languages.Which of the following statements about L is true ?
A. L is necessarily a regular ...
1
vote
2answers
77 views
Regular expression equivalences
Is the following regular expression equivalence true? Why or why not?
(ab)* u (aba)* = (ab u aba)*
*=Kleene star
u=Union (Set Theory)
1
vote
0answers
27 views
JFLAP : Symbol for any character in lanugage
I'm beginner for Automata and JFLAP. I have action Finite Automata which tells that on any character in the language, it must go to another state. How am I implement this on JLAP.Thanks