Data Structures and Algorithms with Object-Oriented Design Patterns in C#
next up previous contents index

Implementation

Program gif introduces the MWayTree class. The MWayTree class extends the AbstractTree class introduced in Program gif and it implements the SearchableContainer interface defined in Program gif. The two fields, key and subtree, correspond to the components of a node shown in Figure gif. (Remember, the count field is inherited from the AbstractContainer base class introduced in Program gif).

   program20802
Program: MWayTree fields.

The first field, key, is an array ComparableObject instances. It is used to record the keys contained in the node. The second field, subtree, is an array of MWayTree instances which are the subtrees of the given node.

The inherited count field keeps track of the number of keys contained in the node. Recall, a node which contains tex2html_wrap_inline64523 keys has tex2html_wrap_inline64525 subtrees. We have chosen to keep track of the number of keys of a node rather than the number of subtrees because it simplifies the coding of the algorithms by eliminating some of the special cases.


next up previous contents index

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