Skip to content

prefix、infix、postfix

notation 链接
prefix Polish notation Prefix notation
("Polish")
infix Infix notation
postfix Reverse Polish notation Postfix notation
("Reverse Polish")

AST traversal

notation AST traversal
prefix pre-order
infix in-order
postfix post-order

Conversion

Infix-to-Postfix

Postfix-to-Prefix

Prefix-to-Infix

Build AST

参见 Build-AST 章节。