BNF grammar matching - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T10:20:01Z http://stackoverflow.com/feeds/question/580142 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/580142/bnf-grammar-matching 1 BNF grammar matching Student 2009-02-24T01:44:07Z 2009-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#580153 0 Answer by duffymo for BNF grammar matching duffymo 2009-02-24T01:50:16Z 2009-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#580170 1 Answer by dmckee for BNF grammar matching dmckee 2009-02-24T01:59:14Z 2009-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#580171 2 Answer by sykora for BNF grammar matching sykora 2009-02-24T01:59:21Z 2009-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>