BNF grammar matching - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T10:20:01Zhttp://stackoverflow.com/feeds/question/580142http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/580142/bnf-grammar-matching1BNF grammar matchingStudent2009-02-24T01:44:07Z2009-02-24T02:33:02Z
<p>My teacher has given me two bnf grammars: </p>
<pre><code>A ::= 'd' | A 'e' A | A 'f' A
B ::= 'd' | B B 'e' | B B 'f'
</code></pre>
<p>and four strings to match with them:</p>
<ul>
<li>dffd</li>
<li>dddefddfe</li>
<li>dedf</li>
<li>deded</li>
</ul>
<p>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.</p>
http://stackoverflow.com/questions/580142/bnf-grammar-matching/580153#5801530Answer by duffymo for BNF grammar matchingduffymo2009-02-24T01:50:16Z2009-02-24T01:50:16Z<p>My advice would be to draw a finite automata or state diagram for yourself before you write any code. Do it out by hand with a pencil and paper first.</p>
http://stackoverflow.com/questions/580142/bnf-grammar-matching/580170#5801701Answer by dmckee for BNF grammar matchingdmckee2009-02-24T01:59:14Z2009-02-24T02:27:02Z<p>Hmmm... </p>
<p>By induction, all matches must have an odd number of characters. So neither of the 4 character strings can be a hit...</p>
<p><hr /></p>
<p>Oh wait. I just noticed the 'Y' in the first rule. Do we know what that is? It could break my argument right open...</p>
http://stackoverflow.com/questions/580142/bnf-grammar-matching/580171#5801712Answer by sykora for BNF grammar matchingsykora2009-02-24T01:59:21Z2009-02-24T01:59:21Z<p>This is a Context-Free grammar, so you should be looking to draw a parse tree. You can then see which non-terminal symbol leads to which yielded string. These grammars are fairly simple, so drawing a parse tree should be fairly easy to do by hand.</p>