Saturday, August 30, 2008

Everything about Binary Tree Algorithms

This article introduces the basic concepts of binary trees, and then works through a series of practice problems with solution code in C/C++. Binary trees have an elegant recursive pointer structure, so they are a good way to learn recursive pointer algorithms.

Here I present a very good article on Binray Trees by Nick Parlante.

This is one of the best articles I have found about binary trees on internet.