As an example, for a simple context free grammar like,

S -> 12A
A -> 4 or 5A

How should LR (recursive ascent not table based) parser be implemented for it. Sample code in C or any language would be appreciated...Input for a program would be any number like say 124 or 12554 and so on....Output will be whether input number is valid according to the grammar or not..

thanks,

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.