Package examples

Interface BalancedBTree<E extends java.lang.Comparable<? super E>>

Type Parameters:
E - type of data stored by this tree
All Superinterfaces:
BinaryTree<E>
All Known Implementing Classes:
AVLTree

public interface BalancedBTree<E extends java.lang.Comparable<? super E>>
extends BinaryTree<E>
A height-balanced binary search tree. This is a marker interface that does not introduce any new methods; its use indicates that the implementing tree class is self-balancing.