Module cs1302uga.gen
Package cs1302.oracle
package cs1302.oracle
Provides sample "oracle" implementations for various data types.
-
ClassesClassDescriptionAn "oracle" implementation of
UrgencyQueue
that uses a linked list ofNode
objects to maintain its "line" of items and requires a Comparator Constructor Parameter so that it can compare items.OracleLinkedUrgencyQueue<Type extends Comparable<Type>>An "oracle" implementation ofUrgencyQueue
that uses a linked list ofNode
objects to maintain its "line" of items and imposes a Comparable Upper Bound so that it can compare items.OracleQueue<Type>