Class InsertionOrderSplayTree<T>

  • Type Parameters:
    T - key type that is stored in the tree

    public class InsertionOrderSplayTree<T>
    extends Object
    A splay tree for items that are not Comparable. There is no 'insert' method, any new item is appended to the right side of the SplayTree by first finding the 'max' (farthest right), splaying to it, and adding the new Node as its right child