I want to code this for PDA. How would I do that in C#?

a^nbc^n (n>=0)
link|improve this question

76% accept rate
4  
I assume that he's using PDA to refer to Push Down Automata. – SLaks Dec 14 '09 at 19:46
2  
I think he wants to write it in graffiti. – Kevin Panko Dec 14 '09 at 19:46
feedback

3 Answers

up vote 5 down vote accepted

Algorithm:

Read one letter at a time from the input, in a loop.

Stage 1:

If the letter read is "a" then increment a counter, and repeat Stage 1. If the letter read is not "a" then proceed to the next part.

Stage 2:

If the letter read is "b" then proceed to the next stage. If the letter read is not "b" then the algorithm fails.

Stage 3:

If if the letter read is "c" then decrement the counter, and repeat Stage 3. If the letter read is not "c" then proceed to the next stage.

Stage 4:

If the counter is zero, then the algorithm succeeds, otherwise it fails.

link|improve this answer
feedback

You could start with the Wikipedia article.

link|improve this answer
FYI: Your link was broken, so I fixed it. – Daniel Pryden Dec 14 '09 at 19:40
feedback

The Basics of Compiler Design is a good (freely available) reference that will help you out.

http://www.diku.dk/~torbenm/Basics/basics%5Flulu.pdf

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.