Tagged Questions

A pushdown automaton (PDA) is a finite-state automaton with added stack based memory. It is a mathematical description of an algorithm for parsing context-free languages.

learn more… | top users | synonyms

5
votes
4answers
235 views

Checking if a string consists of balanced parenthesis

I wrote the following program to check strings for balanced parenthesis: isBalanced xs = isBalanced' xs [] isBalanced' [] [] = True isBalanced' [] _ = False isBalanced' ('(':xs) ys = isBalanced' ...
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
2answers
667 views

Design a Push Down Automata to count the number of characters

The Alphabet: a, b, c I'm trying to define a PDA which accepts a^n b^m c^p : n + p = 2k for some integer k, m = k, and n, m, p, k >= 0 I think some strings that would be accepted are: #abc#; ...
2
votes
3answers
776 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 ...
1
vote
1answer
35 views

how to figure out what language a PDA recognizes

Im trying to figure out how to deduce what language a PDA recognizes, and feel like im close but am still missing out. Take the following PDA for example. I can make a transition chart to figure out ...
1
vote
3answers
233 views

Is it possible to write a self-interpreting FSM or Pushdown Automaton?

I'm sorry for this newbie question, but I need a quick answer to tell a friend if that's possible.
1
vote
3answers
539 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
3answers
57 views

Pushdown Automata

How would I write a pda for 0^m 1^n, where |m| >= |n|; the number of 0's is greater than or equal to the number of 1's? I was thinking of: if you see a 1 or 0, push it on to the stack if you ...
0
votes
1answer
52 views

context free grammar to a PDA, am i correct?

Im reviewing for my midterm and wanted to post this to see if anyone can spot any errors. Im supposed to make a PDA that recognizes this CFG: heres my solution (note, im aware I forgot to draw ...
0
votes
1answer
101 views

Error Compiling an Deterministic Pushdown Automaton in C (DPDA)

I was reading about how to implement a DPDA and found this code in the following Internet address: http://code.zhoubot.com/, This c file implements a simple pushdown automata. The automata will read ...
0
votes
1answer
65 views

Pushdown automaton (a^x b a^y c a^x+y )

My friend asked me a question about pushdown automaton. abacaa. I'm looking at some similar problems but all problems contain even numbers just like 0^a 1^a but now I have 3 values. I've found an ...
0
votes
0answers
41 views

pushdown automaton [closed]

how do i create a pushdown automaton using paper modelling
0
votes
1answer
209 views

Program to convert context free language to push down automata?

I can't find any applet or program online to convert a context free language into a push down automata ..any help would be greatly appreciated. Regards!
0
votes
1answer
275 views

A Push Down Automata that produces the flip and reverse of a string

The alphabet: 0, 1 Consider a flip, to flip each character: 0 -> 1; 1 -> 0 So if w = 0011 then w-flip = 1100 Consider a reverse to be the characters in reversed order So if w = 01101 then w-reverse ...
0
votes
1answer
335 views

Pushdown automaton for (a^n b^n)^m c^m

I'm stuck building the transition functions for this automaton. I suppose I should stack a 1 for each a and unstack it for each b The number of c's equals the number of ab pairs, so I think I should ...
0
votes
3answers
720 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
0answers
279 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 ...