Skip to content
This repository has been archived by the owner on May 18, 2024. It is now read-only.

Latest commit

 

History

History
7 lines (5 loc) · 262 Bytes

notes.md

File metadata and controls

7 lines (5 loc) · 262 Bytes

SR: shift-reduce. Shift is pushing, reduce is popping LR: left to right scanning

If grammar has a non-determinism then we need to left factor it If grammar has a left recursion then we need to eliminate it

Source: https://stackoverflow.com/a/24335320/1834787