Tagged Questions

0
votes
3answers
184 views

How do I implement pushdown automaton in C#?

I want to code this for PDA. How would I do that in C#? a^nbc^n (n>=0)
0
votes
2answers
65 views

Deriving a state machine from a BNF grammar

I am trying to put together a proof of concept of an XSS-safe string interpolation scheme. Given a string with substitutions, "Hello <b>$planetoid</b>!" I want break it into literal …
0
votes
0answers
72 views

Pushdown automaton branches

I'm asked to write a pushdown automaton program using java?I'm up to the simulation part. My pda is non deterministic.I need to set time limit for computation as it might go to one branch forever.This …
1
vote
3answers
192 views

How do I design the transition functions for this pushdown automaton?

I'm studying for a test on PDA, and I want to know how to design a pushdown automaton that recognizes the following language: L = {a^max(0,n-m)b^n a^m| n,m >=0} How can I design a transition …