Skip to main content

Questions tagged [parse-tree]

For questions relating to concrete syntax trees, or parse trees, which represent the exact syntactic structure of the text. Do not use it for questions about abstract syntax trees that have been processed further to omit concrete information, use [abstract-syntax-tree] instead.

Filter by
Sorted by
Tagged with
28 votes
7 answers
13k views

When I started researching parsing and compiling I started with simple mathematical expression parsers. Many of the existing implementations I found have an intermediate step of converting a string ...
CPlus's user avatar
  • 10.5k
13 votes
2 answers
2k views

Compiling and interpreting programming languages typically involves parsing text into a tree that represents the different groupings of syntactic elements. The hierarchy represents which syntactic ...
CPlus's user avatar
  • 10.5k