Package components.sortingmachine
package components.sortingmachine
Provides the
SortingMachine family interfaces and implementing classes.-
ClassDescription
SortingMachineKernelenhanced with secondary methods.SortingMachinerepresented asjava.util.List(using an embedding ofjava.util.Collections.sort), with implementations of primary methods.SortingMachinerepresented as aQueue(using an embedding of selection sort), with implementations of primary methods.SortingMachinerepresented as aQueue(using an embedding of insertion sort), with implementations of primary methods.SortingMachinerepresented as aQueue(using an embedding of quicksort), with implementations of primary methods.SortingMachinerepresented as aQueueand an array (using an embedding of heap sort), with implementations of primary methods.Sorting machine kernel component with primary methods.Layered implementations of secondary methods forSortingMachine.