vote up 1 vote down star

I recently asked a question regarding writing a very basic English grammar parser. I thought it might be helpful to show some code (though very ugly) to specify where I need assistance in implementing the grammar. Here is the code. Comments indicate questions.

#include "std_lib_facilities.h"

string sentence();
string noun();
string verb();

string article()
{
string words = sentence(); // not sure how to check for words
           if (words == "the")
           words = sentence();
           else return words;        
}

string verb()
{
string words = sentence(); // not sure how to check for words
           if (words == "rules" || words == "fly" || words == "swim")
           words = sentence();
           else return words;                   
}

string noun()
{
string words = sentence(); // not sure how to check for words
           if (words == "birds" || words == "fish" || words == "C++")
           words = sentence();
           else return words;                   
}

string conjunction()
{
string words = sentence(); // not sure how to check for words
          if (words == "and" || words == "but" || words == "or")
          words = sentence();
          else return words;                  
}

string sentence()
{
if (noun()){ // this fails to compile, not sure how to check this 
             // error message says could not convert noun to bool  
    if (verb())
       cout << "OK.\n";
    else cout << "Not OK.\n";}
else if (article()){
                   if (sentence()) // will this create a loop?
                      cout << "Ok.\n";
                   else cout << "Not Ok.\n";}
else if (conjunction()){
    if (sentence()) // actually needs to be sentence conjunction sentence
       cout << "Ok.\n";
       else cout << "Not Ok.\n";
else cout << "Not OK.\n";

}


int main()
{                                   
string words;
cout << "Enter sentence.\n";
while(cin >> words){
      sentence();
      }
keep_window_open(); // this function is part of the facilities library
}

The code is very incomplete, but is basically a framework for what needs to happen. The main problems are that I need to check if a function is true, and I need to know how to compare the user input to the called function (anything besides strcasecmp()? it hasn't been used in the book yet so there must be another way to it.) I'm also worried about there possibly being multiple outputs of "OK" or "Not OK", but I'll worry about that later.

flag

67% accept rate
It might have been better to just edit your original question to include this code. – Dennis Palmer Jun 23 at 20:49
I did and there were no response. – Alex Jun 23 at 21:59
See my post in other thread. – Martin York Jun 23 at 23:42

4 Answers

vote up 1 vote down

Look into lex & yacc for easier and more elegant way to implement this.

link|flag
The point of this exercise is to make it from scratch, not to use a compiler tool. – Alex Jun 23 at 22:01
Then I would say, that first write down the grammar on paper (sample BNF on faqs.org/docs/perl5int/lexparse.html). Then tackle each rule one by one (Compiler Design by Per Brinch Hansen demonstrates this approach in an excellent way) – Sridhar Iyer Jun 24 at 18:07
vote up 0 vote down

One thing you can do is have the functions return bools instead of strings and pass in references to strings as parameters to the function calls. This would at least enable you to check the return values of the functions.

link|flag
vote up 0 vote down

Parsing natural languages is a really hard task. Especially to do it completely from scratch.

You may consider using existing libraries, like Link Grammar Parser (C, custom GPL-compatible free software license which seems a lot like BSD to me, has bindings to many languages) or RelEx (Java, Apache License).

Add: Found some AGFL grammar for English.

link|flag
vote up 0 vote down

I've done it with NLTK

It is very powerful but uses Python instead of C++. A lot of chatbots are coded with this toolkit, you can also try them out

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.