- Queue<E> - Interface in net.datastructures
-
Interface for a queue: a collection of elements that are inserted
and removed according to the first-in first-out principle.
- quickSort(PositionList<E>, Comparator<E>) - Static method in class net.datastructures.Sort
-
Sorts the elements of list in in nondecreasing order according to
comparator c, using a list-based implementation of the deterministic
quicksort algorithm.
- quickSort(E[], Comparator<E>) - Static method in class net.datastructures.Sort
-
Sorts the elements of array s in nondecreasing order according
to comparator c, using the quick-sort algorithm.