void QuickSort(int *p, int low, int high) { if (low< high) { int i = low, j = high, pivot = p[low]; while (i < j) ...