namespace weiss.nonstandard { // Basic node stored in unbalanced binary search trees public class BinaryNode { // Constructor public BinaryNode( AnyType theElement ) { element = theElement; left = right = null; } internal AnyType element; // The data in the node internal BinaryNode left; // Left child internal BinaryNode right; // Right child } }