Computer Science, asked by rintu2548, 11 months ago

How do you identify predictive parser and non-recursive predictive parser?

Answers

Answered by veersingh63
0

Predictive parser is a recursive descent parser, which has the capability to predict which production is to be used to replace the input string. The predictive parser does not suffer from backtracking. To accomplish its tasks, the predictive parser uses a look-ahead pointer, which points to the next input symbols.

Similar questions