Skip to content

Expression Trees

Adam Dernis edited this page May 21, 2020 · 1 revision

Expression trees are the backbone of Calc. An expression tree is a tree of nodes, representing operators or values. This is an example representation of an expression tree.

      +
    /    \
  ^       *
 / \     /  \
x   2   2    x   (x^2 + 2x)
Clone this wiki locally