What is predictive parsing? How is it different from recursive descent parsing?
Answers
Answered by
1
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.
Similar questions