/************************ BSTNode.java ************************** * node of a generic binary search tree */ public class BSTNode> { protected T el; protected BSTNode left, right; public BSTNode() { left = right = null; } public BSTNode(T el) { this(el,null,null); } public BSTNode(T el, BSTNode lt, BSTNode rt) { this.el = el; left = lt; right = rt; } }