This class implements an enhanced version of the quicksort algorithm to sort an array of comparable values.
It uses a cutoff point to switch to an insertion sort when the array size has become too small for quicksort to be useful. It is recommended for use with arrays of 10,000 items or less.
It can sort comparable values of type integer, double or strings which convert to integers.
| Not yet rated by the users |
No application links were specified for this class.

If you know an application of this package, send a message to the
author to add a link here.
| File |
Role |
Description |
qstest.php |
Example |
Example/test file for the Quick Sort class |
quicksort.php |
Class |
QuickSort class file |