In the previous chapter, we presented red-black trees. These binary search trees provide faster insertion performance compared to AVL trees but slower search time.
In this chapter, we introduce and implement expression trees. These are used to represent and evaluate some mathematical expressions.
In the next section, we introduce expression trees.
13.1 Expression Trees
Expression trees are used to represent and evaluate mathematical expressions. Here, we limit such expressions to have operands given ...