8.18. SummaryΒΆ
In this chapter we have looked at the tree data structure. The tree data structure enables us to write many interesting algorithms. In this chapter we have looked at algorithms that use trees to do the following:
- A binary tree for parsing and evaluating expressions.
- A balanced binary tree (AVL tree).
- A binary tree to implement a min heap.
- A min heap used to implement a priority queue.