structure5
Interface OrderedStructure<K extends java.lang.Comparable<K>>

All Superinterfaces:
java.lang.Iterable<K>, Structure<K>
All Known Implementing Classes:
BinarySearchTree, OrderedList, OrderedVector, RedBlackSearchTree, SplayTree

public interface OrderedStructure<K extends java.lang.Comparable<K>>
extends Structure<K>

An interface that supports a Collection whose values are kept in increasing order. Values stored within ordered structures should implement Comparable; ie. they should have an implemented compareTo method.

See Also:
Comparable, Comparable.compareTo(T)

Method Summary
 
Methods inherited from interface structure5.Structure
add, clear, contains, elements, isEmpty, iterator, remove, size, values