Terminology of Grammars


    S  ->  0 A 1
  0 A  ->  0 0 A 1
    A  ->  e

The non-terminals are A and S, and the terminals are 0 and 1. The start symbol is S. e is a special symbol denoting the empty string.


[Prev] [Next] [Index]