Open main menu
Home
Random
Recent changes
Special pages
Community portal
Preferences
About Wikipedia
Disclaimers
Incubator escapee wiki
Search
User menu
Talk
Dark mode
Contributions
Create account
Log in
Editing
Left recursion
(section)
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
== Uses == Left recursion is commonly used as an idiom for making operations [[left-associative]]: that an expression <code>a+b-c-d+e</code> is evaluated as <code>(((a+b)-c)-d)+e</code>. In this case, that evaluation order could be achieved as a matter of syntax via the three grammatical rules :<math> \mathit{Expression} \to \mathit{Term} </math> :<math> \mathit{Expression} \to \mathit{Expression} + \mathit{Term} </math> :<math> \mathit{Expression} \to \mathit{Expression} - \mathit{Term} </math> These only allow parsing the <math>\mathit{Expression}</math> <code>a+b-c-d+e</code> as consisting of the <math>\mathit{Expression}</math> <code>a+b-c-d</code> and <math>\mathit{Term}</math> <code>e</code>, where <code>a+b-c-d</code> in turn consists of the <math>\mathit{Expression}</math> <code>a+b-c</code> and <math>\mathit{Term}</math> <code>d</code>, while <code>a+b-c</code> consists of the <math>\mathit{Expression}</math> <code>a+b</code> and <math>\mathit{Term}</math> <code>c</code>, etc.
Edit summary
(Briefly describe your changes)
By publishing changes, you agree to the
Terms of Use
, and you irrevocably agree to release your contribution under the
CC BY-SA 4.0 License
and the
GFDL
. You agree that a hyperlink or URL is sufficient attribution under the Creative Commons license.
Cancel
Editing help
(opens in new window)