show/hide this revision's text 4 edited body

My teacher has given me two bnf grammars:

A ::= 'd' | A 'e' Y A | A 'f' A
B ::= 'd' | B B 'e' | B B 'f'

and four strings to match with them:

  • dffd
  • dddefddfe
  • dedf
  • deded

I've figured out two of them, but the other two have me stumped. 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.

show/hide this revision's text 3 deleted 8 characters in body

My teacher has given me two bnf grammars:

Y 

A ::= 'a' d' | Y A 'b' e' Y | Y A 'c' Y
Z f' A
B ::= 'a' d' | Z Z B B 'b' e' | Z Z B B 'c'
f'

and four strings to match with them:

  • acca
  • aaabcaacb = Z
  • abac
  • ababa = Y

    • dffd
    • dddefddfe
    • dedf
    • deded

    I've figured out two of them, but the other two have me stumped. 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.

show/hide this revision's text 2 deleted 1208 characters in body

  • aaabcaacb = Z
  • ababa = Y
  • I've tried to right figured out the parse tree by handtwo of them, but was unable to figure out which grammar would match which string. I then wrote a small program to try and help the other two have me , but it didn't find any matches eitherstumped. 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;
            
    show/hide this revision's text 1