| java.lang.Object sun.misc.Sort
quicksort | public static void quicksort(Object arr, int left, int right, Compare comp)(Code) | | quicksort the array of objects.
arr[] - an array of objects Parameters: left - - the start index - from where to begin sorting Parameters: right - - the last index. Parameters: comp - - an object that implemnts the Compare interface to resolve thecomparison. |
|
|