Computer Science, asked by manojkumar6692, 11 months ago

In which case recursive decent parsing algorithm is used?

Answers

Answered by Honeypie096
2

A predictive parser runs in linear time. Recursive descent with backtracking is a technique that determines which production to use by trying each production in turn. Recursive descent with backtracking is not limited to LL(k) grammars, but is not guaranteed to terminate unless the grammar is LL(k).

Similar questions