My teacher has given me two bnf grammars:
Y ::= 'a' | Y 'b' Y | Y 'c' Y
Z ::= 'a' | Z Z 'b' | Z Z 'c'
and four strings to match with them:
- acca
- aaabcaacb
- abac
- ababa
I've tried to right out the parse tree by hand, but was unable to figure out which grammar would match which string. I then wrote a small program to try and help me, but it didn't find any matches either. I don't want anyone to tell me the answers, but if someone could give me some hints as to where I'm going wrong it would be much appreciated.
#include <iostream>
#include <vector>
#include "boost/spirit.hpp"
using namespace std;
using namespace boost;
using namespace boost::spirit;
bool canParseY(const string &str)
{
rule<> Y;
Y = ch_p('a') | (Y >> ch_p('b') >> Y) | (Y >> ch_p('c') >> Y);
return parse(str.c_str(), Y, space_p).full;
}
bool canParseZ(const string &str)
{
rule<> Z;
Z = ch_p('a') | (Z >> Z >> ch_p('b')) | (Z >> Z >> ch_p('c'));
return parse(str.c_str(), Z, space_p).full;
}
int main()
{
vector<string> v;
v.push_back("acca");
v.push_back("aaabcaacb");
v.push_back("abac");
v.push_back("ababa");
for(int i = 0; i < v.size(); ++i)
{
cout << v[i] << ": " << endl;
cout << "Y: " << boolalpha << canParseY(v[i]) << endl;
cout << "Z: " << boolalpha << canParseZ(v[i]) << endl;
cout << endl << endl;
}
return 0;
}