I have this part of a grammar
S ‐> S a | S b a | a | S b c S | S b c b | c S | c b
and I need to use it in order to create some SD sets and later on a parse table.
But, before doing that, I should convert this into a top-down parsable grammar.
My question is how do you do that? I know that you have to get rid of left-recursiveness, but how do I go about in doing that?
I read the wikipedia article and some other one from an university, but I can't wrap my head around how I should do it.
Can you please give me some help?