// swap the two integer args // called by all the sort algorithms void swapref (int& i, int& j) // tabulate memory faults { int temp = i; i = j; j = temp; }