1
vote
2answers
99 views
Pac-Man representation with Finite State Automaton
Hi there,
Consider a game similar to pac-mac that we want to represent it with an FSA graph. We have a maze (table) and there are berries into it in random positions. The goal is t …
0
votes
8answers
194 views
what is 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.
4
votes
9answers
530 views
State Machines and User Interface work — any examples/experience?
Hello
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 Sta …
0
votes
3answers
104 views
Online resources for Finite Automata Theory
Could someone point me to some good online material for finite automata theory?
Wikipedia articles are very concise.
6
votes
9answers
821 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. Se …
0
votes
0answers
20 views
Real time Alerts
Hi All,
I am trying to produce a real time Alert system. I am not sure on how to quote this.
Eg.
I have a network sniffer that would be listening to the Packets. Let us say two p …
1
vote
4answers
342 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 alpha …
0
votes
2answers
314 views
nfa to dfa algorithm
I've read a text file of symbols,states and transition n put it all in a table.It looks like this:
symbols a, b
states q1, q2, q3, q4
start state q4
final state q2, q3
transition …
0
votes
2answers
139 views
Should a Finite State Machine have a “nested” Finite State Machine?
You can read this question where I ask about the best architecture for a machine application for a little back story, although it's not entirely necessary for helping me with this …
0
votes
3answers
92 views
Finite machine interpreter
I'm doing formal method and one of the project is to create a finite machine interpreter using java.it needs to read NFA from a text file and then convert from NFA to DFA. It also …
1
vote
3answers
319 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 adde …
6
votes
1answer
126 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 …
0
votes
5answers
276 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 …
4
votes
7answers
623 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, …
2
votes
7answers
593 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 …
