Tagged Questions
4
votes
4answers
511 views
Is there a standard C++ grammar?
Does the standard specify the official C++ grammar?
I searched, but did not find it anywhere.
Also, I wish to read a bit about C++ grammar in detail, like which category of grammars it falls in, ...
1
vote
4answers
2k views
Context free grammar conversion
can anyone let me know if there is any software to convert Chomsky normal form to Backus–Naur Form and vice versa?
0
votes
3answers
185 views
Need help with converting to Chomsky Normal Form?
Convert the grammar below into Chomsky Normal Form. Give all the intermediate steps.
S -> AB | aB
A -> aab|lambda
B -> bbA
Ok so the first thing I did was add a new start variable S0
so ...
0
votes
1answer
286 views
Translating a right recursive grammar into Chomsky Normal Form
I am trying to do an exercise where I translate a grammar into Chomsky normal form. I understand how to do this in normal circumstances but this time the grammar I am working with is right recursive. ...