Data Structures and Algorithms with Object-Oriented Design Patterns in Python
next up previous index

Binary Search Trees

The class BinarySearchTree introduced in Program gif represents binary search trees. Since binary trees and binary search trees are topologically similar, the BinarySearchTree class extends the BinaryTree introduced in Program gif. In addition, because it represents search trees, the BinarySearchTree class extends the abstract SearchTree class defined in Program gif.

   program18651
Program: BinarySearchTree class __init__ method.




next up previous index

Bruno Copyright © 2003, 2004 by Bruno R. Preiss, P.Eng. All rights reserved.