Class BinarySearchTree.Node<Key extends Comparable<Key>,Value>

java.lang.Object
dsa.lab07.exercises.BinarySearchTree.Node<Key,Value>
Type Parameters:
Key - the key type
Value - the value type
Enclosing class:
BinarySearchTree<Key extends Comparable<Key>,Value>

protected static class BinarySearchTree.Node<Key extends Comparable<Key>,Value> extends Object
A node in a binary search tree.