Performs a sort on the given String array. Elements will be re-ordered into ascending order. @param arr - the array to sort @param start - the start index @param end - the end index + 1
(String[] arr, int start,
int end)
| 2948 | * the end index + 1 |
| 2949 | */ |
| 2950 | private static void stableStringSort(String[] arr, int start, |
| 2951 | int end) { |
| 2952 | stableStringSort(arr, arr, new String[end], start, end, 0); |
| 2953 | } |
| 2954 | |
| 2955 | /** |
| 2956 | * Performs a sort on the given String array. Elements will be re-ordered into |