Uses of Package
org.jheaps.annotations
-
Packages that use org.jheaps.annotations Package Description org.jheaps.array Heaps using an array representationorg.jheaps.dag Heaps using an explicit "pointer-based" dag representationorg.jheaps.tree Heaps using an explicit "pointer-based" tree representation -
Classes in org.jheaps.annotations used by org.jheaps.array Class Description ConstantTime Marker interface to indicate that an operation takes constant time.LinearTime Marker interface to indicate that an operation takes O(n) time where n is the size of the input.LogarithmicTime Marker interface to indicate that an operation takes O(log(n)) time where n is the size of the input. -
Classes in org.jheaps.annotations used by org.jheaps.dag Class Description ConstantTime Marker interface to indicate that an operation takes constant time.LogarithmicTime Marker interface to indicate that an operation takes O(log(n)) time where n is the size of the input. -
Classes in org.jheaps.annotations used by org.jheaps.tree Class Description ConstantTime Marker interface to indicate that an operation takes constant time.LogarithmicTime Marker interface to indicate that an operation takes O(log(n)) time where n is the size of the input.