Binary Search Tree Interface

DESCRIPTION

Binary Search Tree Interface provides simple interface for adding, deleting, retrieving and enumerating items in a tree. The inteface allows also duplicate values in the tree, and it does not allocate any memory. The interface can support many types of binary search trees.

The interface is not thread-safe. If the same SilcTree context must be used in multithreaded environment concurrency control must be employed.

TABLE OF CONTENTS