Compare and contrast ll 1 parser and recursive descent parser
Answers
Answered by
3
Answer:
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