can somebody please help me turn the following grammar to LL(1), and explain how he did it please?
B → B and B | not B | ( B ) | id
i need the not operator to have precedence over the and operator. thank you! edit: my results so far:
B - > Eb'
B' -> andBE'
B" -> epslion (empty)
E -> E'F
E' -> notE'F
E' -> epsilon (empty)
F -> id
F -> (B)
F -> B