The hand-written bottom-up parsing approach seems more intuitive because it enables us to construct`left` + `right` immediately before looking further.
For the same problem, the hand-written bottom-up parsing approach would look like below:
You could even implement this with a loop instead of a recursive call, to avoid running out of stack.
Please note that memorization is a simple trick to solve a lot of parsing problems. I developed an intepretting parser, that basically does back-tracking, which is sped-up with memorization. Because the core interpretter is relatively small (fits in primary cache), it performs quite well. You simply give it a very natural looking grammar, with some annotations, and it builds you an abstract parse tree. I also implemented an unparser, which can be used to produce nicely formatted output for each abstract parse tree (just using the same grammar, with some annotations about where to insert line breaks and indentation). For more details see https://github.com/FransFaase/IParse
I got all the way to the end of the article without noticing who the author was, thinking "what a clearly written piece -- I should keep an eye out for this author in the future".
It's nice to be able to handle left-recursive grammars in a PEG parser. It feels liberating. Although I never used it to write my dream programming language :-).
Note that the same thing can be done via a stack of alternate parsers: when the recursive parser is on top of the stack, then the one below it shall be chosen.
I've recently written a Java parser by hand (https://github.com/tanin47/javaparser.rs) and aimed to emulate a bottom-up parsing as much as possible.
The hand-written bottom-up parsing approach seems more intuitive because it enables us to construct`left` + `right` immediately before looking further.
For the same problem, the hand-written bottom-up parsing approach would look like below:
(Please excuse my python... I'm a bit rusty)