public class Sort
extends java.lang.Object
public static void quicksort(java.lang.String[] array,
int begin,
int end)
quicksort(array, 0, array.length); sorts the full array.array - an array - not nullbegin - valid start offset into the array - points to the start elementend - valid end offset into the array - points behind the last element.