Difference between revisions of "Binary expression tree"

From Wiki @ Karl Jones dot com
Jump to: navigation, search
(Created page with "A binary expression tree is a specific kind of a binary tree used to represent expressions. Two common types of expressions that a binary expression tree can represent are alg...")
(No difference)

Revision as of 07:47, 20 February 2016

A binary expression tree is a specific kind of a binary tree used to represent expressions. Two common types of expressions that a binary expression tree can represent are algebraic[1] and boolean. These trees can represent expressions that contain both unary and binary operators.[1] Each node of a binary tree, and hence of a binary expression tree, has zero, one, or two children. This restricted structure simplifies the processing of expression trees.

https://en.wikipedia.org/wiki/Binary_expression_tree