Click here to Skip to main content
15,867,594 members
Articles / Programming Languages / C#
Article

A simple Binary Search Tree written in C#

Rate me:
Please Sign up or sign in to vote.
4.82/5 (43 votes)
18 Aug 2008BSD8 min read 562.1K   18.3K   151   35
A simple Binary Search Tree written in C# that can be used to store and retrieve large amounts of data quickly.

Introduction

In Computer Science, a binary tree is a hierarchical structure of nodes, each node referencing at most to two child nodes. Every binary tree has a root from which the first two child nodes originate. If a node has no children, then such nodes are usually termed leaves, and mark the extent of the tree structure.

A particular kind of binary tree, called the binary search tree, is very useful for storing data for rapid access, storage, and deletion. Data in a binary search tree are stored in tree nodes, and must have associated with them an ordinal value or key; these keys are used to structure the tree such that the value of a left child node is less than that of the parent node, and the value of a right child node is greater than that of the parent node. Sometimes, the key and datum are one and the same. Typical key values include simple integers or strings, the actual data for the key will depend on the application. In this article, I describe a binary search tree that stores string/double pairs. That is, the key is the string value and the data associated with the key is a double value. Developers can search the tree using string values.

Sample Image - maximum width is 600 pixels

Background

There are a number of basic operations one can apply to a binary search tree, the most obvious include, insertion, searching, and deletion.

To insert a new node into a tree, the following method can be used. We first start at the root of the tree, and compare the ordinal value of the root to the ordinal value of the node to be inserted. If the ordinal values are identical, then we have a duplicate and we return to the caller indicating so. If the ordinal value is less than the root, then we follow the left branch of the root, else we follow the right branch. We now start the comparison again but at the branch we took, comparing the ordinal value of the child with the node to be inserted. Traversal of the tree continues in this manner until we reach a left or right node which is empty and we can go no further. At this point, we insert the new node into this empty location. Note that new nodes are always inserted as leaves into the tree, and strictly speaking, nodes are thus appended rather than inserted.

Searching a binary search tree is almost identical to inserting a new node except that we stop the traversal when we find the node we're looking for (during an insertion, this would indicate a duplicate node in the tree). If the node is not located, then we report this to the caller.

Both insertion and searching are naturally recursive and are, arguably, easier to understand when considered in terms of their unit operation. A basic recursive search algorithm will look like:

node search (node, key) {
   if node is null then return null;

   if node.key = key then
      return node

   if key < node then
      return search (node.left, key);
   else
      return search (node.right, key);

In the source code provided with this article, insertion is implemented recursively, while searching uses an iterative approach.

Deletion is a little bit more complicated but boils down to three rules. The three rules refer to deleting nodes without any children, nodes with one child, and nodes with two children. If a node has no children, then the node is simply deleted. If the node has one child, then the node is deleted and the child node is brought forward to link to the parent. The complication occurs when a node has two children. However, even here, the rules are straightforward when stated. To delete a node with two children, the next ordinal node (called the successive node) on the right branch is used to replaced the deleted node. The successive node is then deleted. The successive node will always be the left most node on the right branch (likewise, the predecessor node will be the right most node on the left branch). The figure below illustrates the deletion rules.

Deletion rules

A common alternative to using binary search tree is to use Hash tables. Hash tables have better search and insertion performance metrics. In theory, the time it takes to insert or search for an item in a Hash table is independent of the number of data items stored. In contrast, a binary search tree scales with log (N) where N is the number of data items (still far better than a linear search). The .NET libraries contain explicit support for Hash tables.

Balanced Trees

The time taken to insert or search for a specific item in a tree will be affected by a tree's depth. Deep trees take longer to search, and the insertion order into a tree can affect a tree's shape. A random insertion order will generally produce a more bushy and hence shallower tree compared to an ordered insert. Bushy trees are often called balanced trees, and although not implemented here, balancing a tree is a highly desirable feature for a binary search tree implementation. Certain algorithms such as the red-black tree will auto-balance as the tree is constructed (see Red/Black tree animation). The figure below shows three trees generated by three identical data sets but inserted in a different order. The first is the most balanced and hence the most shallow of the three examples.

Image 3

Image 4

Image 5

Implementing the search and insertion methods using a recursive approach has the potential to yield poor performance, particularly when the trees are unbalanced.

Using the Code

Using the source code provided with this article is very easy. The following code illustrates the instantiation of a new binary tree, the insertion of data into the tree, and subsequent retrieval. The method insert() is used to insert new data, and the method findSymbol() is used to locate and retrieve data. If findSymbol() fails to locate the data item, it returns null. When successful, findSymbol() returns a TTreeNode object which has two properties, name and value. The following code illustrates how to use the binary search tree. The class name of the binary tree is TBinarySTree, and the individual nodes have class type TTreeNode.

C#
// Create a new binary tree
bt = new TBinarySTree();

// Insert data
bt.insert ("Canis Minoris", 5.37);
bt.insert ("Gamma Cancri", 4.66);
bt.insert ("Phi Centauri", 3.83);
bt.insert ("Kappa Tauri", 4.21);
 
// Retrieve data  
TTreeNode symbol = bt.findSymbol ("Phi Centauri");
if (symbol != null)
   Console.WriteLine ("Star {1} has magnitude = {0}", symbol.name, symbol.value);

Other methods of interest include:

C#
bt.clear();
bt.count();

count returns the number of nodes in the tree.

C#
bt.delete (key);

delete will delete the node with the given key. If the method fails to locate the node, the method throws a simple exception.

The source code is licensed under the BSD license. The source should compile on C# 2.0.

To use the source code, unpack the source, load the binary tree solution (binaryTree.sln) and compile the BinaryTree project. In your own project, include as a reference to BinaryTree.dll. This version was written using Visual Studio 2003.

Points of Interest

The following graphs compare the performance of the Binary Tree search with .NET's built-in Hashtable class. The implementations follow the expected scaling laws as the number of stored data items increase. The X axis indicates the number of data items stored, ranging from 1000 to 1,000,000 items (21 intervals in all). The Y axis indicates the average time required to retrieve one data item (averaged over 20,000 retrieval attempts). The Hashtable follows roughly O(1), that is the time taken to retrieve data is independent of the number of data items stored. In contrast, the binary search tree scales roughly O(log (N)). However, this is far better than a linear search which would scale as O(N); that is, doubling the number of stored items doubles the average time taken to retrieve a single data item. The graph on the left shows the data plotted on log axes.

Image 6

Image 7

Times were computed using the QueryPerformanceCounter() method. The code for timing was derived from Tobi+C#=T#.

Other Possibilities

One should consider the implementation outlined here as the minimum practical implementation. The project where this implementation originated did not require any further sophistication. However, there are a number of areas where it could be significantly improved. In particular, two areas warrant further work:

  1. The current implementation is specific to storing name/value pairs. Ideally, one would prefer a more generic implementation where a developer could employ their own object type.
  2. The implementation may suffer performance degradation when subjected to large data sets if the trees become significantly unbalanced. Ideally one could implement the Red/Black variant to avoid this issue (see reference 1. at the end of the article for details).

Other minor changes include using a property in place of the public method count, adding further utility methods, and changing the naming convention on the classes and methods to make them more consistent with .NET.

History

  1. Fixed a small error in the third tree, Figure 3 (missing C node).
  2. There is an older article on CodeProject which discusses Red-Black trees in C#, something I should have spotted earlier (Red-Black Trees in C#).

References

There appears to be very little material on Binary Search Trees using .NET 1.1; the following, particularly the first link, provide material related to .NET 2.0.

  1. Examination of Binary Search Trees using C# 2.0.
  2. C5 is a .NET 2.0 library of generic collection classes for C#.
  3. A collection of data structures including binary search trees.

License

This article, along with any associated source code and files, is licensed under The BSD License


Written By
Researcher
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionSearch function doesn't work Pin
Liam-Saxon18-Feb-20 23:03
Liam-Saxon18-Feb-20 23:03 
QuestionApplication of this code Pin
amogh222-Jun-18 22:16
amogh222-Jun-18 22:16 
QuestionAVL Trees in C# Pin
Ben McNamara13-Sep-15 18:48
Ben McNamara13-Sep-15 18:48 
GeneralMy vote of 5 Pin
newton.saber22-Aug-14 3:53
newton.saber22-Aug-14 3:53 
QuestionBug Pin
blabl bla28-Mar-12 6:18
blabl bla28-Mar-12 6:18 
BugSuccessor's (potential) right subtree is lost when deleting a node with both children existing? Pin
Himanshu Pokhariya23-Nov-11 1:19
Himanshu Pokhariya23-Nov-11 1:19 
GeneralRe: Successor's (potential) right subtree is lost when deleting a node with both children existing? Pin
Herbert Sauro23-Nov-11 5:41
Herbert Sauro23-Nov-11 5:41 
GeneralRe: Successor's (potential) right subtree is lost when deleting a node with both children existing? Pin
Himanshu Pokhariya23-Nov-11 9:28
Himanshu Pokhariya23-Nov-11 9:28 
QuestionExcellent Pin
jlechem18-Nov-11 6:00
jlechem18-Nov-11 6:00 
AnswerRe: Excellent Pin
Herbert Sauro23-Nov-11 5:42
Herbert Sauro23-Nov-11 5:42 
QuestionAdding/calculating Tree Height Pin
j2c15-Aug-11 22:54
j2c15-Aug-11 22:54 
Hello Herbert,

Thank you for your code.

I want to use it as a basis for some exercise I'm doing while hunting for a job.
I'd like to add a value of height to each node.

I'd like to develop a piece of code that will serialize and de-serialize the tree.

I've found some ways like this one :
How to find the height of a BTree

Can anyone help incorporate the height factor into the tree while adding the node?

Thanks in advance
AnswerRe: Adding/calculating Tree Height Pin
Ben McNamara13-Sep-15 18:51
Ben McNamara13-Sep-15 18:51 
GeneralError Pin
vince_343-May-11 3:41
vince_343-May-11 3:41 
GeneralMy vote of 5 Pin
kdgupta8724-Jan-11 21:23
kdgupta8724-Jan-11 21:23 
GeneralQuestion Regarding Count Function Accuracy Pin
NuNn17-Dec-09 11:13
NuNn17-Dec-09 11:13 
GeneralSortedDictionary Pin
br1annn16-Nov-09 15:12
br1annn16-Nov-09 15:12 
GeneralRe: SortedDictionary Pin
Herbert Sauro17-Nov-09 7:06
Herbert Sauro17-Nov-09 7:06 
Questionresults of measurment Pin
Member 41626392-Sep-08 21:37
Member 41626392-Sep-08 21:37 
AnswerRe: results of measurment Pin
Herbert Sauro10-Feb-09 18:11
Herbert Sauro10-Feb-09 18:11 
GeneralWhere is this algorithm practically used Pin
Alberto Bencivenni26-Aug-08 21:02
Alberto Bencivenni26-Aug-08 21:02 
GeneralRe: Where is this algorithm practically used Pin
Herbert Sauro27-Aug-08 7:12
Herbert Sauro27-Aug-08 7:12 
GeneralRe: Where is this algorithm practically used Pin
Alberto Bencivenni27-Aug-08 8:37
Alberto Bencivenni27-Aug-08 8:37 
GeneralRe: Where is this algorithm practically used Pin
Herbert Sauro27-Aug-08 9:22
Herbert Sauro27-Aug-08 9:22 
GeneralRe: Where is this algorithm practically used Pin
Alberto Bencivenni27-Aug-08 11:27
Alberto Bencivenni27-Aug-08 11:27 
GeneralExcellent Pin
newspicy20-Aug-08 6:27
newspicy20-Aug-08 6:27 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.