Skip to content

LL

Family of parsing algorithms. LL - first L stands for left-to-right. Second L stands for leftmost derivation. Aka:

  • top-down. In top-down parsers, construction of parse tree starts at the root and prceeds towards the leaves.
  • recursive descent

Includes following algorithms (not an exhaustive list):

Related: