Early describes his parser as a ``breadth-first top-down parser with
bottom-up recognition'' (!) While we will regard it as a top-down
parser it does in fact exhibit many similarities to LR parsing.
Note that any similarity with the LR algorithms is superficial however:
At any stage in a top-down parse we have a ``current'' non-terminal
symbol and a choice of rules to apply to it. If we cannot make a
definite choice (eg. based on lookahead), we must adopt a search
strategy.
Conventionally, this will be
The major problem with breadth-first parsing is that it takes
exponential time (relative to the input string length) in general.
Early's approach seeks to limit the options chosen, resulting in an
algorithm of order , where is the length of the input
string.