In the Introduction, we used the binary search algorithm to find data stored in an array. This
method is very effective, as each iteration reduced the number of items to search by one-half.
Theory
A binary search tree is a tree where each node has a left and right child. Either child, or both
children, may be missing. Figure 3-2 illustrates a binary search tree. Assuming k represents the value of a given node, then a binary search tree also has the following property: all children to
20
7
4 16
38
37 43
Figure 3-2: A Binary Search Tree
To search a tree for a given value, we start at the root and work down. For example, to
search for 16, we first note that 16 < 20 and we traverse to the left child. The second comparison
finds that 16 > 7, so we traverse to the right child. On the third comparison, we succeed.
- 20 -
4
7
16
20
37
38
43
Figure 3-3: An Unbalanced Binary Search Tree
Each comparison results in reducing the number of items to inspect by one-half. In this
respect, the algorithm is similar to a binary search on an array. However, this is true only if the
tree is balanced. Figure 3-3 shows another tree containing the same values. While it is a binary
search tree, its behavior is more like that of a linked list, with search time increasing proportional
to the number of elements stored.
Insertion and Deletion
Let us examine insertions in a binary search tree to determine the conditions that can cause an
unbalanced tree. To insert an 18 in the tree in Figure 3-2, we first search for that number. This
causes us to arrive at node 16 with nowhere to go. Since 18 > 16, we simply add node 18 to the
right child of node 16 (Figure 3-4).
20
7
4 16
38
37 43
18
Figure 3-4: Binary Tree After Adding Node 18
- 21 -
Now we can see how an unbalanced tree can occur. If the data is presented in an ascending
sequence, each node will be added to the right of the previous node. This will create one long
chain, or linked list. However, if data is presented for insertion in a random order, then a more
balanced tree is possible.
Deletions are similar, but require that the binary search tree property be maintained. For
example, if node 20 in Figure 3-4 is removed, it must be replaced by node 37. This results in the
tree shown in Figure 3-5. The rationale for this choice is as follows. The successor for node 20
must be chosen such that all nodes to the right are larger. Therefore we need to select the
smallest valued node to the right of node 20. To make the selection, chain once to the right
(node 38), and then chain to the left until the last node is found (node 37). This is the successor
for node 20.
37
7
4 16
38
43
18
Figure 3-5: Binary Tree After Deleting Node 20
Implementation
Source for the binary search tree algorithm may be found in file bin.c. Typedef T and
comparison operators compLT and compEQ should be altered to reflect the data stored in the tree.
Each Node consists of left, right, and parent pointers designating each child and the
parent. Data is stored in the data field. The tree is based at root, and is initially NULL.
Function insertNode allocates a new node and inserts it in the tree. Function deleteNode
deletes and frees a node from the tree. Function findNode searches the tree for a particular
value.
No comments:
Post a Comment