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)
| 2711 | * the end index + 1 |
| 2712 | */ |
| 2713 | private static void stableStringSort(String[] arr, int start, |
| 2714 | int end) { |
| 2715 | stableStringSort(arr, arr, new String[end], start, end, 0); |
| 2716 | } |
| 2717 | |
| 2718 | /** |
| 2719 | * Performs a sort on the given String array. Elements will be re-ordered into |