(String[] arr, int start,
int end)
| 3123 | /// - `end`: @param end - |
| 3124 | /// the end index + 1 |
| 3125 | private static void stableStringSort(String[] arr, int start, |
| 3126 | int end) { |
| 3127 | stableStringSort(arr, arr, new String[end], start, end, 0); |
| 3128 | } |
| 3129 | |
| 3130 | /// Performs a sort on the given String array. Elements will be re-ordered into |
| 3131 | /// ascending order. Uses a stable ternary quick sort algorithm. |