No. | Parse Tree | Syntax Tree |
1 | Interior nodes are non-terminals, leaves are terminals. | Interior nodes are “operators”, leaves are operands. |
2 | Rarely constructed as a data structure. | When representing a program in a tree structure usually use a syntax tree. |
3 | Represents the concrete syntax of a program. | Represents the abstract syntax of a program (the semantics). |