Balanced Trees

Home | PSI RAS | RCIS | S-Tree Lib

Back ] Up ] Next ]
  1. Common properties of balanced trees.

In the theory of data structures the problem of index representation is known as the problem of maintaining dynamic dictionaries. A dynamic dictionary is a data structure for storing dictionary elements, called keys, together with algorithms of search, insertion, and deletion of the keys. Balanced trees are intended to provide for an efficient solution of the problem.

tree.jpg (14170 bytes)

Fig.1. Balanced tree with numerical keys.

A balanced tree stores keys chosen from a finite set of keys K. The key set K is linearly ordered, and the keys are placed to the tree according to the ordering (see Fig.1). Each node of the tree contains a number of keys. Leaves don’t contain anything else, while the internal nodes additionally contain references to other nodes. A number of references in an internal node equals the number of keys in the node plus 1. An internal node S composed of m keys is denoted by

S = (S0,k0,...,Si,ki,Si+1,...,km-1,Sm)

The following property of the nodes of the tree is the bases for an efficient tree searching.

  1. For each key ki of the node all keys located at the sub-tree accessible via the reference Si to the left of ki are less than ki, and all keys located at the sub-tree accessible via the reference Si+1 which is to the right of ki are greater than ki.
  2. A balanced tree is organized such that

  3. All paths in the tree from the root to a leaf have equal lengths.

Trees satisfying the above properties 1 and 2 are called structured trees.

A search algorithm is common for all structured trees. Starting from the root one should look for the given key k in a current node, and either find the key in the node or find a pair of adjacent keys ki-1, and ki such that ki-1 < k < ki, and continue searching in the sub-tree referenced by Si.

Last update: 12/24/97 by
Konstantin Shvachko: