BSTreeNode.java
Iz E-študij, proste zakladnice študentskega znanja
//Vozlisce binarnega iskalnega drevesa public class BSTreeNode { Comparable key ; BSTreeNode left, right ; public BSTreeNode(Comparable k) { this(k,null,null) ; } public BSTreeNode(Comparable k, BSTreeNode lt, BSTreeNode rt) { key = k ; left = lt ; right = rt ; } public String toString() { return key.toString() ; } }