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,