Difference between Left Factoring and Left Recursion

后端 未结 7 1161
长情又很酷
长情又很酷 2020-12-13 06:25

What is the difference between Left Factoring and Left Recursion ? I understand that Left factoring is a predictive top down parsing t

7条回答
  •  温柔的废话
    2020-12-13 07:11

    This is the way I've seen the two terms used:

    1. Left recursion: when one or more productions can be reached from themselves with no tokens consumed in-between.
    2. Left factoring: a process of transformation, turning the grammar from a left-recursive form to an equivalent non-left-recursive form.

提交回复
热议问题