Package com.aoapps.hodgepodge.sort


package com.aoapps.hodgepodge.sort
  • Class
    Description
    Attempts to automatically select the best sort algorithm based on information available in the list.
    Generalized structure for sort algorithms that are based on comparisons.
    An enhanced quick sort demonstration algorithm SortAlgorithm.java, Thu Oct 27 10:32:35 1994
    A quick sort demonstration algorithm SortAlgorithm.java
    A heap sort demonstration algorithm SortAlgorithm.java, Thu Oct 27 10:32:35 1994
    A radix sort implementation for numeric data, sorting by its integer representation.
    A radix sort implementation for numeric data, sorting by its integer representation.
    A sort implementation that sorts int[] primitives as was as integer representation of numeric objects.
    Orders numbers by their integer representation.
    A sort algorithm using the standard Java sort methods.
    An quick sort with buble sort speedup demonstration algorithm SortAlgorithm.java, Thu Oct 27 10:32:35 1994
    A shell sort demonstration algorithm.
    Generalized structure for sort algorithms.
    Sorting statistics to help determine best algorithm for a specific task.