This is the second in a series of videos about binary trees. This demonstrates a procedural implementation of a binary tree in VB.NET. It includes iterative code to construct a binary tree, and similar code to search a binary tree. The tree is represented using 3 array variables, one for the data, one for the left pointers and one for the right pointers.