This is the fourth in a series of videos about binary trees. This shows an object oriented implementation of a binary tree in VB.NET. The tree is defined as a class, and its Insert method allows a binary tree to be built by creating node objects from a node class. This binary tree class also includes methods to search the tree, perform an inorder traversal, find the maximum value and find the minimum value.